remove static method

Future<void> remove(
  1. String key
)

Implementation

static Future<void> remove(String key) async {
  _mem.remove(key);
  await _persist();
}