ResponsiveFormFieldButton<T> constructor

const ResponsiveFormFieldButton<T>({
  1. Key? key,
  2. dynamic onSaved(
    1. T?
    )?,
  3. String validator(
    1. T?
    )?,
  4. dynamic onChanged(
    1. T?
    )?,
  5. String? labelText,
  6. String? hintText,
  7. double fontSize = 26,
  8. T? value,
  9. IconData icon = Icons.arrow_drop_down,
  10. dynamic onIconTap()?,
  11. TextStyle? textStyle,
  12. TextStyle? errorStyle,
  13. TextStyle? labelStyle,
  14. TextStyle? hintStyle,
  15. required List<DropdownMenuItem<T>> items,
})

Implementation

const ResponsiveFormFieldButton({
  Key? key,
  this.onSaved,
  this.validator,
  this.onChanged,
  this.labelText,
  this.hintText,
  this.fontSize = 26,
  this.value,
  this.icon = Icons.arrow_drop_down,
  this.onIconTap,
  this.textStyle,
  this.errorStyle,
  this.labelStyle,
  this.hintStyle,
  required this.items,
}) : super(key: key);