copyWith method
CustomContentBodyWrite
copyWith({
- CustomContentBodyWriteRepresentation? representation,
- String? value,
Implementation
CustomContentBodyWrite copyWith(
{CustomContentBodyWriteRepresentation? representation, String? value}) {
return CustomContentBodyWrite(
representation: representation ?? this.representation,
value: value ?? this.value,
);
}