ChatEventMemberJoinedByInviteLink.fromJson constructor

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

Parse from a json

Implementation

factory ChatEventMemberJoinedByInviteLink.fromJson(
        Map<String, dynamic> json) =>
    ChatEventMemberJoinedByInviteLink(
      inviteLink: ChatInviteLink.fromJson(json['invite_link']),
      viaChatFolderInviteLink: json['via_chat_folder_invite_link'],
    );