FormBubbleStyle constructor

const FormBubbleStyle({
  1. DropDownElementStyle? dropDownStyle,
  2. RadioButtonElementStyle? radioButtonStyle,
  3. CheckBoxElementStyle? checkBoxStyle,
  4. TextInputElementStyle? textInputStyle,
  5. TextStyle? labelStyle,
  6. ButtonElementStyle? buttonStyle,
  7. ButtonElementStyle? submitButtonStyle,
  8. TextStyle? titleStyle,
  9. TextStyle? goalCompletionTextStyle,
  10. SingleSelectStyle? singleSelectStyle,
  11. double? width,
  12. double? height,
  13. Color? background,
  14. Gradient? gradient,
  15. BoxBorder? border,
  16. double? borderRadius,
})

Creates a new instance of FormBubbleStyle.

All parameters are optional.

Implementation

const FormBubbleStyle({
  this.dropDownStyle,
  this.radioButtonStyle,
  this.checkBoxStyle,
  this.textInputStyle,
  this.labelStyle,
  this.buttonStyle,
  this.submitButtonStyle,
  this.titleStyle,
  this.goalCompletionTextStyle,
  this.singleSelectStyle,
  super.width,
  super.height,
  super.background,
  super.gradient,
  super.border,
  super.borderRadius,
});