MeetChatMessage.fromJson constructor

MeetChatMessage.fromJson(
  1. Map<String, dynamic> json
)

Converts a JSON object into a MeetChatMessage instance.

Implementation

MeetChatMessage.fromJson(Map<String, dynamic> json)
    : link = json['link'] as String?,
      messageId = json['messageId'] as String?,
      scheduledDateTime = json['scheduledDateTime'] as int?,
      title = json['title'] as String?;