setBool static method

dynamic setBool(
  1. String key,
  2. bool val
)

Implementation

static setBool(String key, bool val) {
  checkInit();
  if (_justCache)
    cache['$prefix$key'] = val;
  else
    sharedPreferences!.setBool('$prefix$key', val);
}