writeValue static method
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);
}