delete method
Delete from local storage
Implementation
@override
/// Delete from local storage
Future<void> delete(String key) async {
try {
File file = File(keyPath(key));
if (await file.exists()) {
file.delete();
}
} on Exception catch (e) {
debugPrint(e.toString());
}
}