start method

Future<void> start()

Implementation

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