stopScan method

Future<bool> stopScan()

Implementation

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