getInt static method

int? getInt(
  1. String key
)

Implementation

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