remove method Null safety
- String key
override
Removes the value associated with the key
.
Implementation
@override
Future<bool> remove(String key) async {
_data.remove(key);
return true;
}
Removes the value associated with the key
.
@override
Future<bool> remove(String key) async {
_data.remove(key);
return true;
}