run abstract method

Future<MontyResult> run(
  1. String code, {
  2. MontyLimits? limits,
  3. String? scriptName,
})

Runs Python code to completion in the background Isolate.

If scriptName is non-null, it overrides the default filename in tracebacks and error messages.

Implementation

Future<MontyResult> run(
  String code, {
  MontyLimits? limits,
  String? scriptName,
});