getInt static method

int? getInt(
  1. String key
)

Gets an integer value from storage.

Implementation

static int? getInt(String key) {
  _ensureInitialized();
  return _prefs!.getInt(key);
}