setInt static method

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

Implementation

static Future setInt(String key, int v) async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  await prefs.setInt(key, v);
  // var box = Hive.box('myBox');
  // box.put(key, v );
}