BoolFilterView constructor

BoolFilterView({
  1. FilterController<BoolFilter>? filterController,
  2. String? hint,
  3. bool? allowSorting,
  4. String textUnspecified = "Unspecified",
  5. String textTrue = "Yes",
  6. String textFalse = "No",
})

Implementation

BoolFilterView({
  super.filterController,
  super.hint,
  super.allowSorting,
  this.textUnspecified = "Unspecified",
  this.textTrue = "Yes",
  this.textFalse = "No",
});