getBool method

bool? getBool(
  1. String field, {
  2. bool? defaultValue,
})

Implementation

bool? getBool(String field, {bool? defaultValue}) {
  return get(field) ?? defaultValue;
}