copyWith method
Implementation
Input$UpdateDiscussionCommentInput copyWith(
{String? body,
String? Function()? clientMutationId,
String? commentId}) =>
Input$UpdateDiscussionCommentInput(
body: body == null ? this.body : body,
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
commentId: commentId == null ? this.commentId : commentId);