NumberFilterView constructor

NumberFilterView({
  1. FilterController<NumberFilter>? filterController,
  2. String? hint,
  3. bool? allowSorting,
  4. String textValue = "Value",
  5. String textValueMin = "Value min",
  6. String textValueMax = "Value max",
  7. String textUnspecified = "Unspecified",
  8. String textEqualsTo = "Equals to",
  9. String textGreaterThan = "Greater than",
  10. String textGreaterOrEqualThan = "Greater or equal than",
  11. String textLessThan = "Less than",
  12. String textLessOrEqualThan = "Less or equal than",
  13. String textRange = "Range",
  14. String textExceptionValueValidation = "Value must be an integer number.",
})

Implementation

NumberFilterView({
  super.filterController,
  super.hint,
  super.allowSorting,
  this.textValue = "Value",
  this.textValueMin = "Value min",
  this.textValueMax = "Value max",
  this.textUnspecified = "Unspecified",
  this.textEqualsTo = "Equals to",
  this.textGreaterThan = "Greater than",
  this.textGreaterOrEqualThan = "Greater or equal than",
  this.textLessThan = "Less than",
  this.textLessOrEqualThan = "Less or equal than",
  this.textRange = "Range",
  this.textExceptionValueValidation = "Value must be an integer number.",
});