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