setInt method

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

Implementation

setInt(String key, int value) {
  prefs?.setInt(key, value);
}