setBool static method

Future<void> setBool(
  1. String key,
  2. bool value,
  3. String appGroup
)

Stores value in the user defaults key-value store.

Implementation

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