copyWith method
Input$UpdateRefsInput
copyWith({
- String? clientMutationId()?,
- List<
Input$RefUpdate> ? refUpdates, - String? repositoryId,
Implementation
Input$UpdateRefsInput copyWith(
{String? Function()? clientMutationId,
List<Input$RefUpdate>? refUpdates,
String? repositoryId}) =>
Input$UpdateRefsInput(
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
refUpdates: refUpdates == null ? this.refUpdates : refUpdates,
repositoryId:
repositoryId == null ? this.repositoryId : repositoryId);