ChatStyle constructor

ChatStyle({
  1. dynamic bubbleStyle,
  2. Color appBarColor = Colors.black,
  3. Color appBarTextColor = Colors.white,
  4. bool appbarEnabled = true,
})

Implementation

ChatStyle(
    {bubbleStyle,
    this.appBarColor = Colors.black,
    this.appBarTextColor = Colors.white,
    this.appbarEnabled = true})
    : bubbleStyle = bubbleStyle ?? BubbleStyle();