copyWith method

ContentDTO copyWith({
  1. String? iframeSrc,
})

Implementation

ContentDTO copyWith({String? iframeSrc}) {
  return ContentDTO(
    iframeSrc: iframeSrc ?? this.iframeSrc,
  );
}