copyWith method
Implementation
HtmlPlatformMediumEntity copyWith({
String? documentID,
String? htmlReference,
String? mediumId,
}) {
return HtmlPlatformMediumEntity(
htmlReference: htmlReference ?? this.htmlReference,
mediumId: mediumId ?? this.mediumId,
);
}