BubbleText constructor

const BubbleText({
  1. Key? key,
  2. String text = '',
  3. int? maxLines,
  4. TextExpandedCallback? onExpanded,
  5. double radius = 4,
  6. Color bgColor = const Color(0xFFF8F8F8),
  7. TextStyle? textStyle,
})

create BrnBubbleText

Implementation

const BubbleText(
    {Key? key,
    this.text = '',
    this.maxLines,
    this.onExpanded,
    this.radius = 4,
    this.bgColor = const Color(0xFFF8F8F8),
    this.textStyle})
    : super(key: key);