start method

  1. @override
Future<void> start()
override

Implementation

@override
Future<void> start() async {
  try {
    await _channel.invokeMethod('start');
  } on PlatformException catch (e) {
    throw _deserializeException(e);
  }
}