clear static method

Future<void> clear()

Removes all entries in the storage.

Implementation

static Future<void> clear() async {
  assert(_box != null, 'call "prelude" first');
  await _box!.clear();
}