readDataFromGallery method

Future<void> readDataFromGallery()

Implementation

Future<void> readDataFromGallery() async {
  try {
    await channel?.invokeMethod('readDataFromGallery');
  } on PlatformException catch (e) {
    throw CodeScannerException(e.code, e.message);
  }
}