writeValue static method
Write a value to the local storage.
Provide a name for the value and a value to write.
Implementation
static Future<void> writeValue(String name, String value) async {
await _secureStorage.write(key: key(name), value: value);
}