stopScan method

  1. @override
Future<bool> stopScan()
override

Implementation

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