MessagingStyleInformation constructor

MessagingStyleInformation(
  1. Person person, {
  2. String? conversationTitle,
  3. bool? groupConversation,
  4. List<Message>? messages,
  5. bool htmlFormatContent = false,
  6. bool htmlFormatTitle = false,
})

Constructs an instance of MessagingStyleInformation.

Implementation

MessagingStyleInformation(
  this.person, {
  this.conversationTitle,
  this.groupConversation,
  this.messages,
  bool htmlFormatContent = false,
  bool htmlFormatTitle = false,
}) : super(htmlFormatContent, htmlFormatTitle);