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