stop method

Future<bool> stop()

Implementation

Future<bool> stop() async {
  try {
    final bool result = await _channel.invokeMethod('stop');
    print("stop: $result");
    return result;
  } on PlatformException catch (e) {
    print("Error stop: $e.message");
  }
  return false;
}