getInt static method

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

Implementation

static Future<int?> getInt(String key) async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  return prefs.getInt(key);
}