SelectDefault constructor

SelectDefault({
  1. @required List<String>? options,
  2. BuildContext? context,
  3. void onChanged(
    1. String?
    )?,
  4. DropDownSize? size,
  5. AutovalidateMode? autovalidateMode,
  6. String? selected,
  7. String? hintText,
  8. bool? focused = false,
  9. bool? readonly = false,
  10. dynamic onTap()?,
  11. bool? enabled = true,
  12. Widget? suffixIcon,
  13. String? labelText,
  14. Color? labelTextColor,
  15. String? validator(
    1. String?
    )?,
  16. double? labelTextSize,
  17. BorderSide? customBorder,
  18. double? width,
})

Implementation

SelectDefault(
    {@required this.options,
    this.context,
    this.onChanged,
    this.size,
    this.autovalidateMode,
    this.selected,
    this.hintText,
    this.focused = false,
    this.readonly = false,
    this.onTap,
    this.enabled = true,
    this.suffixIcon,
    this.labelText,
    this.labelTextColor,
    this.validator,
    this.labelTextSize,
    this.customBorder,
    this.width});