EMCombineMessageBody constructor

EMCombineMessageBody(
  1. {String? title,
  2. String? summary,
  3. DownloadStatus fileStatus = DownloadStatus.PENDING,
  4. List<String>? messageList,
  5. String? compatibleText}
)

Implementation

EMCombineMessageBody({
  this.title,
  this.summary,
  this.fileStatus = DownloadStatus.PENDING,
  List<String>? messageList,
  String? compatibleText,
})  : _compatibleText = compatibleText,
      _messageList = messageList,
      super(type: MessageType.COMBINE);