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