start method
Spawns the worker isolate with entryPoint.
Implementation
Future<void> start(void Function(dynamic) entryPoint) async {
_isolate = await Isolate.spawn(entryPoint, _receivePort.sendPort);
}
Spawns the worker isolate with entryPoint.
Future<void> start(void Function(dynamic) entryPoint) async {
_isolate = await Isolate.spawn(entryPoint, _receivePort.sendPort);
}