copyWith method
Implementation
Input$UpdateTeamReviewAssignmentInput copyWith(
{Enum$TeamReviewAssignmentAlgorithm? Function()? algorithm,
String? Function()? clientMutationId,
bool? enabled,
List<String>? Function()? excludedTeamMemberIds,
String? id,
bool? Function()? notifyTeam,
int? Function()? teamMemberCount}) =>
Input$UpdateTeamReviewAssignmentInput(
algorithm: algorithm == null ? this.algorithm : algorithm(),
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
enabled: enabled == null ? this.enabled : enabled,
excludedTeamMemberIds: excludedTeamMemberIds == null
? this.excludedTeamMemberIds
: excludedTeamMemberIds(),
id: id == null ? this.id : id,
notifyTeam: notifyTeam == null ? this.notifyTeam : notifyTeam(),
teamMemberCount: teamMemberCount == null
? this.teamMemberCount
: teamMemberCount());