setString static method

Future<void> setString(
  1. String key,
  2. String? value
)

Saves a string value to persistent storage under the specified app group.

If value is null, this is equivalent to calling remove() on the key.

Implementation

static Future<void> setString(String key, String? value) async {
  await _setValue('String', key, value);
}