resumeScanner method

  1. @override
Future<void> resumeScanner()
override

Resumes the camera scanner

Implementation

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