copyWith method
Implementation
ContentBlock copyWith({
String? topic,
LocalizedText? content,
References? references,
}) {
return ContentBlock(
topic: topic ?? this.topic,
content: content ?? this.content,
references: references ?? this.references,
);
}