VideoChatParticipantsInvited constructor

const VideoChatParticipantsInvited({
  1. @JsonKey(name: 'users') required List<User> users,
})

Constructs a VideoChatParticipantsInvited object.

Implementation

const factory VideoChatParticipantsInvited({
  /// New members that were invited to the video chat.
  @JsonKey(name: 'users') required List<User> users,
}) = _VideoChatParticipantsInvited;