copyWith method

Input$CloneProjectInput copyWith({
  1. String? body()?,
  2. String? clientMutationId()?,
  3. bool? includeWorkflows,
  4. String? name,
  5. bool? public()?,
  6. String? sourceId,
  7. String? targetOwnerId,
})

Implementation

Input$CloneProjectInput copyWith(
        {String? Function()? body,
        String? Function()? clientMutationId,
        bool? includeWorkflows,
        String? name,
        bool? Function()? public,
        String? sourceId,
        String? targetOwnerId}) =>
    Input$CloneProjectInput(
        body: body == null ? this.body : body(),
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        includeWorkflows: includeWorkflows == null
            ? this.includeWorkflows
            : includeWorkflows,
        name: name == null ? this.name : name,
        public: public == null ? this.public : public(),
        sourceId: sourceId == null ? this.sourceId : sourceId,
        targetOwnerId:
            targetOwnerId == null ? this.targetOwnerId : targetOwnerId);