getString static method

String? getString(
  1. String key
)

Implementation

static String? getString(String key) {
  checkInit();
  if (_justCache)
    return cache['$prefix$key'];
  else
    return sharedPreferences!.getString('$prefix$key');
}