removeValue method

Future<void> removeValue(
  1. String key
)

Implementation

Future<void> removeValue(String key) async {
  _cache.remove(key);
  try {
    await SecureStorage.clearSecureData(key);
  } catch (e) {
  }
}