OutgoingMessageBubble constructor

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

Implementation

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