getInt static method

int? getInt(
  1. String key
)

Retrieves an int value from storage.

Implementation

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