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