copyWith method

Input$CloneTemplateRepositoryInput copyWith({
  1. String? clientMutationId()?,
  2. String? description()?,
  3. bool? includeAllBranches()?,
  4. String? name,
  5. String? ownerId,
  6. String? repositoryId,
  7. Enum$RepositoryVisibility? visibility,
})

Implementation

Input$CloneTemplateRepositoryInput copyWith(
        {String? Function()? clientMutationId,
        String? Function()? description,
        bool? Function()? includeAllBranches,
        String? name,
        String? ownerId,
        String? repositoryId,
        Enum$RepositoryVisibility? visibility}) =>
    Input$CloneTemplateRepositoryInput(
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        description: description == null ? this.description : description(),
        includeAllBranches: includeAllBranches == null
            ? this.includeAllBranches
            : includeAllBranches(),
        name: name == null ? this.name : name,
        ownerId: ownerId == null ? this.ownerId : ownerId,
        repositoryId: repositoryId == null ? this.repositoryId : repositoryId,
        visibility: visibility == null ? this.visibility : visibility);