start method
Implementation
Future<void> start() async {
_isolate = await Isolate.spawn<SendPort>(entryPoint, _receivePort.sendPort,
debugName: _debugName);
_sendPort = await _receivePort.first;
}
Future<void> start() async {
_isolate = await Isolate.spawn<SendPort>(entryPoint, _receivePort.sendPort,
debugName: _debugName);
_sendPort = await _receivePort.first;
}