OutgoingMessageBubble constructor

const OutgoingMessageBubble({
  1. Key? key,
  2. Message? message,
  3. Color color = CustomColors.outgoingMessageColor,
  4. Color avatarColor = CustomColors.defaultColor,
})

Implementation

const OutgoingMessageBubble(
    {Key? key,
    this.message,
    this.color = CustomColors.outgoingMessageColor,
    this.avatarColor = CustomColors.defaultColor})
    : super(key: key);