OmegaSearchFieldMulti constructor

OmegaSearchFieldMulti({
  1. Key? key,
  2. bool enabled = true,
  3. bool visible = true,
  4. String label = '',
  5. required Color colorWhite,
  6. required Color colorIcon,
  7. required Color colorPrimary,
  8. String? hint,
  9. bool obscureText = false,
  10. TextInputType keyboardType = TextInputType.text,
  11. FocusNode? focusNode,
  12. List<TextInputFormatter>? inputFormatters,
  13. required List<SearchFieldSource> source,
  14. String barText = 'Buscar',
  15. dynamic onSelect(
    1. dynamic
    )?,
  16. dynamic onSaved(
    1. dynamic value,
    2. List<SearchFieldSource>? keys
    )?,
  17. String? validator(
    1. String?
    )?,
  18. bool showRequiredLabel = false,
  19. required List<SearchFieldSource> getSource(),
  20. bool useValidateToOpen = false,
  21. bool validateToOpen()?,
  22. double labelSize = 14,
})

Implementation

OmegaSearchFieldMulti({
  Key? key,
  this.enabled = true,
  this.visible = true,
  this.label = '',
  required this.colorWhite,
  required this.colorIcon,
  required this.colorPrimary,
  this.hint,
  this.obscureText = false,
  this.keyboardType = TextInputType.text,
  this.focusNode,
  this.inputFormatters,
  required this.source,
  this.barText = 'Buscar',
  this.onSelect,
  this.onSaved,
  this.validator,
  this.showRequiredLabel = false,
  required this.getSource,
  this.useValidateToOpen = false,
  this.validateToOpen,
  this.labelSize = 14,
}) : super(key: key);