deleteAll method
Delete all cookies files in the storage
and the memory.
Implementation
@override
Future<void> deleteAll() async {
await _checkInitialized();
await super.deleteAll();
final keys = _hostSet.toList(growable: true)
..addAll([_indexKey, _domainsKey]);
await storage.deleteAll(keys);
_hostSet.clear();
}