TextFilterView constructor

TextFilterView({
  1. FilterController<TextFilter>? filterController,
  2. String? hint,
  3. bool? allowSorting,
  4. TextInputType keyboardType = TextInputType.text,
})

Implementation

TextFilterView({
  super.filterController,
  super.hint,
  super.allowSorting,
  this.keyboardType = TextInputType.text,
});