delete method

  1. @override
Future<void> delete(
  1. String key
)

Delete the cookie value with the given key in the storage.

Implementation

@override
Future<void> delete(String key) async {
  final box = await _openBox();
  await box.delete(key);
}