remove method Null safety
- String key
Remove a key value pair from storage namespace
Implementation
Future<void> remove(String key) async {
await ready;
return isTesting ? box.writeInMemory(key, null) : box.remove(key);
}
Remove a key value pair from storage namespace
Future<void> remove(String key) async {
await ready;
return isTesting ? box.writeInMemory(key, null) : box.remove(key);
}