delete method
Delete from local storage
Implementation
@override
/// Delete from local storage
Future<void> delete(String key) async {
final path = await _storagePath;
File file = File(_keyPath(path, key));
if (await file.exists()) {
await file.delete();
}
}