AudioBubbleStyle constructor

const AudioBubbleStyle({
  1. TextStyle? titleStyle,
  2. TextStyle? subtitleStyle,
  3. Color? playIconTint,
  4. Color? pauseIconTint,
  5. double? width,
  6. double? height,
  7. Color? background,
  8. BoxBorder? border,
  9. double? borderRadius,
  10. Gradient? gradient,
})

Implementation

const AudioBubbleStyle({
  this.titleStyle,
  this.subtitleStyle,
  this.playIconTint,
  this.pauseIconTint,
  super.width,
  super.height,
  super.background,
  super.border,
  super.borderRadius,
  super.gradient,
});