InboxStyleInformation constructor

const InboxStyleInformation(
  1. List<String> lines, {
  2. bool htmlFormatLines = false,
  3. String? contentTitle,
  4. bool htmlFormatContentTitle = false,
  5. String? summaryText,
  6. bool htmlFormatSummaryText = false,
  7. bool htmlFormatContent = false,
  8. bool htmlFormatTitle = false,
})

Constructs an instance of InboxStyleInformation.

Implementation

const InboxStyleInformation(
  this.lines, {
  this.htmlFormatLines = false,
  this.contentTitle,
  this.htmlFormatContentTitle = false,
  this.summaryText,
  this.htmlFormatSummaryText = false,
  bool htmlFormatContent = false,
  bool htmlFormatTitle = false,
}) : super(htmlFormatContent, htmlFormatTitle);