getString static method

String? getString(
  1. String key
)

Gets a string value from storage.

Implementation

static String? getString(String key) {
  _ensureInitialized();
  return _prefs!.getString(key);
}