putInteger static method

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

Implementation

static putInteger(String key, int value) {
  if (_prefs != null) _prefs!.setInt(key, value);
}