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