MeetMessage constructor

MeetMessage({
  1. required String toJid,
  2. String? replyMessageId,
  3. String topicId = "",
  4. String? title,
  5. int? scheduledDateTime,
  6. String? link,
})

Initializes a new instance of the MeetMessage class.

Implementation

MeetMessage(
    {required this.toJid,
    this.replyMessageId,
    // this.mentionedUsersIds,
    // this.metaData = const [],
    this.topicId = "",
    this.title,
    this.scheduledDateTime,
    this.link});