getBool static method

bool getBool(
  1. String key,
  2. bool defaultValue
)

Implementation

static bool getBool(String key,bool defaultValue) {
  bool? value=prefs.getBool(key);
  //Log.i(tag, "getBool:"+key+","+value.toString());
  if(value==null){
    value=defaultValue;
  }
  return value;
}