getInt static method

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

Implementation

static int getInt(String key, {int def = 0}) {
  return _prefs?.getInt(key) ?? def;
}