copyWith method
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());