CustomDropDownCountry constructor

CustomDropDownCountry({
  1. DropDownShape? shape,
  2. DropDownPadding? padding,
  3. DropDownVariant? variant,
  4. DropDownFontStyle2? fontStyle,
  5. Alignment? alignment,
  6. double? width,
  7. EdgeInsetsGeometry? margin,
  8. FocusNode? focusNode,
  9. Widget? icon,
  10. String? hintText,
  11. Widget? prefix,
  12. BoxConstraints? prefixConstraints,
  13. List<Country>? items,
  14. required Country selected_item,
  15. dynamic onChanged(
    1. Country
    )?,
  16. FormFieldValidator<Country>? validator,
  17. bool onChangedEnable = true,
  18. dynamic decorationCustom = null,
})

Implementation

CustomDropDownCountry(
    {this.shape,
    this.padding,
    this.variant,
    this.fontStyle,
    this.alignment,
    this.width,
    this.margin,
    this.focusNode,
    this.icon,
    this.hintText,
    this.prefix,
    this.prefixConstraints,
    this.items,
    required this.selected_item,
    this.onChanged,
    this.validator,
      this.onChangedEnable = true,
      this.decorationCustom = null});