cleanupBarcodeStorageInternal static method
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;
}
}