GrockDropdownButton<T> constructor

GrockDropdownButton<T>({
  1. required List<GrockDropdownMenuItem> items,
  2. required String? value,
  3. required String hintText,
  4. TextStyle? textStyle,
  5. TextStyle? hintTextStyle,
  6. void init()?,
  7. BoxDecoration? decoration,
  8. Widget? trailingWidget,
  9. double? height,
  10. double? cardBorderRadius,
  11. EdgeInsetsGeometry? padding,
})

Implementation

GrockDropdownButton({
  required this.items,
  required this.value,
  required this.hintText,
  this.textStyle,
  this.hintTextStyle,
  this.init,
  this.decoration,
  this.trailingWidget,
  this.height,
  this.cardBorderRadius,
  this.padding,
});