setInt method
Set the integer value for the specified key in SharedPreferences.
Implementation
Future<bool> setInt(String dataKey, int? dataValue,
{bool notify = true}) async {
assert(_key != null);
return _decorator.setInt(dataKey, dataValue, notify: notify);
}