copyWith method
Implementation
Input$CreateDiscussionInput copyWith(
{String? body,
String? categoryId,
String? Function()? clientMutationId,
String? repositoryId,
String? title}) =>
Input$CreateDiscussionInput(
body: body == null ? this.body : body,
categoryId: categoryId == null ? this.categoryId : categoryId,
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
repositoryId: repositoryId == null ? this.repositoryId : repositoryId,
title: title == null ? this.title : title);