ChatEventInviteLinkRevoked.fromJson constructor

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

Parse from a json

Implementation

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