copyWith method

HtmlPlatformMediumEntity copyWith({
  1. String? documentID,
  2. String? htmlReference,
  3. String? mediumId,
})

Implementation

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