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