cleanupBarcodeStorage static method

Future cleanupBarcodeStorage()

Clear storage folder with barcode snapped images

Implementation

static Future cleanupBarcodeStorage() async {
  try {
    await _channel.invokeMethod('cleanupBarcodeStorage', {});
    return;
  } catch (e) {
    print(e);
    rethrow;
  }
}