delete method

void delete(
  1. String keys
)

Delete value by keys in current runtime configure.

Implementation

void delete(String keys) {
  final cleanedKeys = keys.trimDots();
  _storage.removeWhere(
      (key, _) => cleanedKeys == key || key.startsWith(cleanedKeys));
}