setInt static method

Future<void> setInt(
  1. String key,
  2. int value,
  3. String appGroup
)

Stores value in the user defaults key-value store.

Implementation

static Future<void> setInt(
  String key,
  int value,
  String appGroup,
) async {
  return _instance.setInt(key, value, appGroup);
}