stop method

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

Implementation

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