remove method

  1. @override
Future<void> remove(
  1. ValueWithType key
)

Removes the value for the given key

Implementation

@override
Future<void> remove(ValueWithType key) =>
    storage.delete(key: key.value.toString());