saveInt static method

dynamic saveInt(
  1. dynamic k,
  2. dynamic v
)

Implementation

static saveInt(k, v) {
  _prefs?.setInt(k, v);
}