deleteSecureKey method
Implementation
Future<void> deleteSecureKey() async {
try {
await _secureStorage.delete(key: _secureKey);
} catch (e) {
throw DatabaseBridgeException(error: e);
}
}
Future<void> deleteSecureKey() async {
try {
await _secureStorage.delete(key: _secureKey);
} catch (e) {
throw DatabaseBridgeException(error: e);
}
}