AutocompleteTypeField constructor

const AutocompleteTypeField({
  1. Key? key,
  2. required ChangedArgs onChanged,
  3. required String dataType,
  4. String? initialValue,
  5. String? labelText,
  6. FormFieldValidator<String>? validator,
  7. bool autofocus = false,
})

Implementation

const AutocompleteTypeField(
    {super.key,
    required this.onChanged,
    required this.dataType,
    this.initialValue,
    this.labelText,
    this.validator,
    this.autofocus = false});