Message constructor

Message({
  1. String content = "",
  2. String? fontFamily,
  3. double fontSize = 16.0,
  4. Color? textColor,
  5. OwnerType ownerType = OwnerType.sender,
  6. String? ownerName,
  7. bool showOwnerName = true,
  8. Color? backgroundColor,
})

Implementation

Message(
    {this.content = "",
    this.fontFamily,
    this.fontSize = 16.0,
    this.textColor,
    this.ownerType = OwnerType.sender,
    this.ownerName,
    this.showOwnerName = true,
    this.backgroundColor});