ChatEventInvitesToggled.fromJson constructor

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

Parse from a json

Implementation

factory ChatEventInvitesToggled.fromJson(Map<String, dynamic> json) => ChatEventInvitesToggled(
  canInviteUsers: json['can_invite_users'],
);