getInteger static method

int getInteger(
  1. String key
)

Implementation

static int getInteger(String key) {
  return _prefs == null ? 0 : _prefs!.getInt(key) ?? 0;
}