writeValue static method

Future writeValue(
  1. String name,
  2. String value
)

Write a value to the local storage Provide a name for the value and a value to write.

Implementation

static Future writeValue(String name, String value) async {
  return await _secureStorage.write(key: key(name), value: value);
}