remove method
Removes a value by its key.
Returns true if the value was removed, false if it didn't exist.
Implementation
@override
Future<bool> remove(K key) async {
if (_storage.containsKey(key)) {
_storage.remove(key);
return true;
}
return false;
}