remove method Null safety

Future<void> remove(
  1. String key
)

Remove a key value pair from storage namespace

Implementation

Future<void> remove(String key) {
  return box.remove(key);
}