deleteSecureData method

Future<void> deleteSecureData(
  1. String key
)

Deletes the entry associated with key from secure storage.

Implementation

Future<void> deleteSecureData(String key) async {
  await _secureStorage.delete(key: key, aOptions: _getAndroidOptions());
}