delete method

Future<void> delete(
  1. String key
)

Implementation

Future<void> delete(String key) async {
  _map.remove(key);
  await save();
}