delete method
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));
}
Delete value by keys
in current runtime configure.
void delete(String keys) {
final cleanedKeys = keys.trimDots();
_storage.removeWhere(
(key, _) => cleanedKeys == key || key.startsWith(cleanedKeys));
}