delete method
Deletes the encrypted entry associated with key.
Example:
await secureStorage.delete('access_token');
Implementation
@override
Future<void> delete(String key) async {
try {
await _storage.delete(key: key);
logger.debug('BloomSecureStorage: Deleted encrypted key "$key"');
} catch (e) {
logger.error('BloomSecureStorage: Error deleting key "$key": $e');
}
}