setBool static method

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

Implementation

static Future<void> setBool(String key, bool? value) async {
  await _cacheApi.setBool(key, value);
}