copyWith method
Implementation
Input$CreateRefInput copyWith(
{String? Function()? clientMutationId,
String? name,
String? oid,
String? repositoryId}) =>
Input$CreateRefInput(
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
name: name == null ? this.name : name,
oid: oid == null ? this.oid : oid,
repositoryId:
repositoryId == null ? this.repositoryId : repositoryId);