copyWith method

Input$UpdateTeamReviewAssignmentInput copyWith({
  1. Enum$TeamReviewAssignmentAlgorithm? algorithm()?,
  2. String? clientMutationId()?,
  3. bool? enabled,
  4. List<String>? excludedTeamMemberIds()?,
  5. String? id,
  6. bool? notifyTeam()?,
  7. int? teamMemberCount()?,
})

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());