start method

Future<bool> start()

Implementation

Future<bool> start() async {
  final success = await methodChannel.invokeMethod<bool>('start');
  return success ?? false;
}