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