copyWith method

Input$ImportProjectInput copyWith({
  1. String? body()?,
  2. String? clientMutationId()?,
  3. List<Input$ProjectColumnImport>? columnImports,
  4. String? name,
  5. String? ownerName,
  6. bool? public()?,
})

Implementation

Input$ImportProjectInput copyWith(
        {String? Function()? body,
        String? Function()? clientMutationId,
        List<Input$ProjectColumnImport>? columnImports,
        String? name,
        String? ownerName,
        bool? Function()? public}) =>
    Input$ImportProjectInput(
        body: body == null ? this.body : body(),
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        columnImports:
            columnImports == null ? this.columnImports : columnImports,
        name: name == null ? this.name : name,
        ownerName: ownerName == null ? this.ownerName : ownerName,
        public: public == null ? this.public : public());