setInt static method

Future setInt(
  1. String key,
  2. int value
)

Implementation

static Future setInt(String key, int value) async {
  final prefs = await SharedPreferences.getInstance();
  return prefs.setInt(key, value);
}