cleanupStorageInternal static method

Future<void> cleanupStorageInternal(
  1. MethodChannel channel
)

Implementation

static Future<void> cleanupStorageInternal(MethodChannel channel) async {
  try {
    await channel.invokeMethod('cleanupStorage');
  } catch (e) {
    Logger.root.severe(e);
    rethrow;
  }
}