copyWith method

Input$UpdateProjectInput copyWith({
  1. String? body()?,
  2. String? clientMutationId()?,
  3. String? name()?,
  4. String? projectId,
  5. bool? public()?,
  6. Enum$ProjectState? state()?,
})

Implementation

Input$UpdateProjectInput copyWith(
        {String? Function()? body,
        String? Function()? clientMutationId,
        String? Function()? name,
        String? projectId,
        bool? Function()? public,
        Enum$ProjectState? Function()? state}) =>
    Input$UpdateProjectInput(
        body: body == null ? this.body : body(),
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        name: name == null ? this.name : name(),
        projectId: projectId == null ? this.projectId : projectId,
        public: public == null ? this.public : public(),
        state: state == null ? this.state : state());