copyWith method
Implementation
CommentBodyWrite copyWith(
{CommentBodyWriteRepresentation? representation, String? value}) {
return CommentBodyWrite(
representation: representation ?? this.representation,
value: value ?? this.value,
);
}