stopScanner method

  1. @override
Future<bool?> stopScanner()
override

Implementation

@override
Future<bool?> stopScanner() async {
  try {
    return await scanningMethodChannel.invokeMethod<bool>('stopScanner');
  } catch (_) {
    return null;
  }
}