MessageBubble constructor

const MessageBubble({
  1. Key? key,
  2. Color color = darkBlue,
  3. String? title,
  4. String? subtitle,
})

Implementation

const MessageBubble({
  Key? key,
  this.color = darkBlue,
  this.title,
  this.subtitle,
}) : super(key: key);