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