toJson method

Map<String, dynamic> toJson()

Converts a MeetChatMessage instance into a JSON object.

Implementation

Map<String, dynamic> toJson() => {
      'link': link,
      'messageId': messageId,
      'scheduledDateTime': scheduledDateTime,
      'title': title
    };