setSecureStorageValue static method

void setSecureStorageValue(
  1. String key,
  2. String value
)

Pre-populate secure storage.

Implementation

static void setSecureStorageValue(String key, String value) {
  _secureStorage[key] = value;
}