ConversationInfo constructor

ConversationInfo({
  1. required String conversationID,
  2. int? conversationType,
  3. String? userID,
  4. String? groupID,
  5. String? showName,
  6. String? faceURL,
  7. int? recvMsgOpt,
  8. int? unreadCount,
  9. Message? latestMsg,
  10. int? latestMsgSendTime,
  11. String? draftText,
  12. int? draftTextTime,
  13. bool? isPrivateChat,
  14. int? burnDuration,
  15. bool? isPinned,
  16. bool? isNotInGroup,
  17. String? ex,
  18. String? ext,
})

Implementation

ConversationInfo({
  required this.conversationID,
  this.conversationType,
  this.userID,
  this.groupID,
  this.showName,
  this.faceURL,
  this.recvMsgOpt,
  this.unreadCount,
  this.latestMsg,
  this.latestMsgSendTime,
  this.draftText,
  this.draftTextTime,
  this.isPrivateChat,
  this.burnDuration,
  this.isPinned,
  this.isNotInGroup,
  this.ex,
  this.ext,
});