copyWith method
Implementation
AlternativeVideo copyWith({
int? id,
int? width,
int? height,
String? codec,
File? hlsFile,
File? video,
}) => AlternativeVideo(
id: id ?? this.id,
width: width ?? this.width,
height: height ?? this.height,
codec: codec ?? this.codec,
hlsFile: hlsFile ?? this.hlsFile,
video: video ?? this.video,
);