removeValue method

void removeValue(
  1. String key
)

Remove a value from the cache and SecureStorage

Implementation

void removeValue(String key) {
  _cache.remove(key);
  SecureStorage.clearSecureData(key);
}