fromJson static method
Creates a object from a json
Implementation
static VideoChatParticipantsInvited fromJson(Map<String, dynamic> json) {
return VideoChatParticipantsInvited(
callIfNotNull(
User.listFromJsonArray,
json['users'],
),
);
}