clearAll static method

Future<void> clearAll()

Clear everything — both L1 and L2.

Implementation

static Future<void> clearAll() async {
  _memory.clear();
  await _box?.clear();
}