deleteSecureKey method

Future<void> deleteSecureKey()

Implementation

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