start abstract method

Future<MontyProgress> start(
  1. String code, {
  2. List<String>? externalFunctions,
  3. MontyLimits? limits,
  4. String? scriptName,
})

Starts iterative execution of code in the background Isolate.

If scriptName is non-null, it overrides the default filename.

Implementation

Future<MontyProgress> start(
  String code, {
  List<String>? externalFunctions,
  MontyLimits? limits,
  String? scriptName,
});