getNullableBoolProperty method

Property<bool?> getNullableBoolProperty(
  1. String name, {
  2. bool? defaultValue() = defaultNullableBool,
  3. bool isImmutable = true,
})

Implementation

Property<bool?> getNullableBoolProperty(
  String name, {
  bool? Function() defaultValue = defaultNullableBool,
  bool isImmutable = true,
}) {
  return getNullableProperty(
    name,
    convertToBool,
    defaultValue,
    isImmutable: isImmutable,
  );
}