fromJson static method

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

Creates a object from a json

Implementation

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