exists method
Check if key exists in local storage
Implementation
@override
/// Check if key exists in local storage
Future<bool> exists(String key) async {
final path = await _storagePath;
File file = File(_keyPath(path, key));
return await file.exists();
}