SimpleTextFormFieldDropDown<T> constructor

const SimpleTextFormFieldDropDown<T>({
  1. Key? key,
  2. String? label,
  3. double? marginBottom,
  4. bool editable = true,
  5. Color? fillColor,
  6. Radius? borderRadius,
  7. String hintText = "Select One",
  8. required List<T> listItem,
  9. required SimpleTextFormFieldDropDownController controller,
  10. String valueItem(
    1. T
    )?,
  11. bool required = false,
})

Implementation

const SimpleTextFormFieldDropDown({
  Key? key,
  this.label,
  this.marginBottom,
  this.editable = true,
  this.fillColor,
  this.borderRadius,
  this.hintText = "Select One",
  required this.listItem,
  required this.controller,
  this.valueItem,
  this.required = false,
}) : super(key: key);