stopScanner method
Stops the camera scanner
Implementation
@override
Future<void> stopScanner() async {
try {
await methodChannel.invokeMethod<void>('stopScanner');
} on PlatformException catch (e) {
throw _handlePlatformException(e);
}
}