cleanIndexedDb static method

Future<void> cleanIndexedDb({
  1. String? except,
})

Clears the browser's IndexedDB.

Implementation

static Future<void> cleanIndexedDb({String? except}) async {
  try {
    await cleanIndexedDB(except).toDart;
  } catch (e) {
    consoleError(e);
  }
}