deleteAll method
Delete all cookies in the storage (regardless the keys).
Implementation
@override
Future<void> deleteAll(List<String> keys) async {
// Ensure _prefs has been initialized before using it
_prefs ??= await SharedPreferences.getInstance();
for (var key in keys) {
await _prefs!.remove(_keyPrefix + key);
}
}