remove method Null safety

Future<void> remove(
  1. 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);
}