toMap method

Map<String, dynamic> toMap()

Converts a MeetMessage object into a map.

Implementation

Map<String, dynamic> toMap() => {
      'toJid': toJid,
      'replyMessageId': replyMessageId,
      'mentionedUsersIds': mentionedUsersIds,
      'metaData': List<dynamic>.from(metaData.map((x) => x.toMap())),
      'topicId': topicId,
      'title': title,
      'scheduledDateTime': scheduledDateTime,
      'link': link
    };