SelectFilterComponent constructor

const SelectFilterComponent({
  1. dynamic onChanged(
    1. dynamic
    )?,
  2. bool? enabled,
  3. List<MenuItemData> menuItemData = const [],
  4. required Color primaryColor,
  5. String? labelText,
  6. String? hintLabelSearch,
  7. required String titleText,
  8. double? width,
  9. dynamic initialValue,
  10. Key? key,
})

Implementation

const SelectFilterComponent({
  this.onChanged,
  this.enabled,
  this.menuItemData = const [],
  required this.primaryColor,
  this.labelText,
  this.hintLabelSearch,
  required this.titleText,
  this.width,
  this.initialValue,
  Key? key,
}) : super(key: key);