getInt static method

int getInt(
  1. String key, {
  2. int defaultValue = 0,
})

Gets an integer value from SharedPreferences.

Implementation

static int getInt(String key, {int defaultValue = 0}) {
  return prefs!.getInt(key) ?? defaultValue;
}