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