getInt static method

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

Implementation

static int? getInt(String key, {int? defaultValue}) {
  int? value = sharedPreferences.getInt(key);
  return value ?? defaultValue;
}