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