copyWith method
Implementation
InviteGroupCallParticipant copyWith({
int? groupCallId,
int? userId,
bool? isVideo,
}) => InviteGroupCallParticipant(
groupCallId: groupCallId ?? this.groupCallId,
userId: userId ?? this.userId,
isVideo: isVideo ?? this.isVideo,
);