cleanupBarcodeStorageInternal static method

Future cleanupBarcodeStorageInternal(
  1. MethodChannel channel
)

Clear storage folder with barcode snapped images

Implementation

static Future cleanupBarcodeStorageInternal(MethodChannel channel) async {
  try {
    await channel.invokeMethod('cleanupBarcodeStorage', {});
    return;
  } catch (e) {
    Logger.root.severe(e);
    rethrow;
  }
}