copyWith method

Input$CreateRefInput copyWith({
  1. String? clientMutationId()?,
  2. String? name,
  3. String? oid,
  4. String? repositoryId,
})

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