copyWith method
Implementation
InviteVideoChatParticipants copyWith({
int? groupCallId,
List<int>? userIds,
}) => InviteVideoChatParticipants(
groupCallId: groupCallId ?? this.groupCallId,
userIds: userIds ?? this.userIds,
);
InviteVideoChatParticipants copyWith({
int? groupCallId,
List<int>? userIds,
}) => InviteVideoChatParticipants(
groupCallId: groupCallId ?? this.groupCallId,
userIds: userIds ?? this.userIds,
);