get static method

dynamic get(
  1. String key
)

Implementation

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