copyWith method

MediaContent copyWith(
  1. MediaContent content
)

Copy this with the values from a new MediaContent

Implementation

MediaContent copyWith(MediaContent content) {
  return MediaContent(
    aspectRatio: content.aspectRatio ?? this.aspectRatio,
    duration: content.duration ?? this.duration,
    hasVideoContent: content.hasVideoContent ?? this.hasVideoContent,
  );
}