PollsBubbleStyle constructor

const PollsBubbleStyle({
  1. TextStyle? questionTextStyle,
  2. TextStyle? pollResultTextStyle,
  3. TextStyle? voteCountTextStyle,
  4. TextStyle? pollOptionsTextStyle,
  5. Color? radioButtonColor,
  6. Color? pollOptionsBackgroundColor,
  7. Color? selectedOptionColor,
  8. Color? unSelectedOptionColor,
  9. Color? backgroundColor,
})

poll bubble style

Implementation

const PollsBubbleStyle(
    {this.questionTextStyle,
    this.pollResultTextStyle,
    this.voteCountTextStyle,
    this.pollOptionsTextStyle,
    this.radioButtonColor,
    this.pollOptionsBackgroundColor,
    this.selectedOptionColor,
    this.unSelectedOptionColor,
    this.backgroundColor});