SingleSelectStyle constructor

SingleSelectStyle({
  1. TextStyle? labelStyle,
  2. TextStyle? selectedOptionTextStyle,
  3. TextStyle? optionTextStyle,
  4. Color? selectedOptionBackground,
  5. Color? optionBackground,
  6. double? width,
  7. double? height,
  8. Color? background,
  9. BoxBorder? border,
  10. double? borderRadius,
  11. Gradient? gradient,
})

Implementation

SingleSelectStyle({
  this.labelStyle,
  this.selectedOptionTextStyle,
  this.optionTextStyle,
  this.selectedOptionBackground,
  this.optionBackground,
  super.width,
  super.height,
  super.background,
  super.border,
  super.borderRadius,
  super.gradient,
});