GfFormDropDown constructor

const GfFormDropDown({
  1. Key? key,
  2. required List<String> values,
  3. String? initialValue,
  4. EdgeInsets? padding,
  5. EdgeInsets? margin,
  6. double? borderradius,
  7. Color? editingbordercolor,
  8. Color? idlebordercolor,
  9. Icon? iconPrefix,
  10. Color? backgroundcolor,
  11. String? hintText,
})

Implementation

const GfFormDropDown(
    {Key? key,
    required this.values,
    this.initialValue,
    this.padding,
    this.margin,
    this.borderradius,
    this.editingbordercolor,
    this.idlebordercolor,
    this.iconPrefix,
    this.backgroundcolor,
    this.hintText})
    : super(key: key);