TextBubbleStyle constructor

const TextBubbleStyle({
  1. TextStyle? textStyle,
  2. double? width,
  3. double? height,
  4. Color? background,
  5. BoxBorder? border,
  6. double? borderRadius,
  7. Gradient? gradient,
})

Implementation

const TextBubbleStyle({
  this.textStyle,
  super.width,
  super.height,
  super.background,
  super.border,
  super.borderRadius,
  super.gradient,
});