copyWith method
Implementation
Input$CreateProjectInput copyWith(
{String? Function()? body,
String? Function()? clientMutationId,
String? name,
String? ownerId,
List<String>? Function()? repositoryIds,
Enum$ProjectTemplate? Function()? template}) =>
Input$CreateProjectInput(
body: body == null ? this.body : body(),
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
name: name == null ? this.name : name,
ownerId: ownerId == null ? this.ownerId : ownerId,
repositoryIds:
repositoryIds == null ? this.repositoryIds : repositoryIds(),
template: template == null ? this.template : template());