getInt static method

Future<int?> getInt(
  1. String key
)

Retrieves a stored integer value.

Implementation

static Future<int?> getInt(String key) async {
  return _sharedPreferences.getInt(key);
}