copyWith method
Implementation
DubbingMediaMetadata copyWith({String? contentType, double? duration}) {
return DubbingMediaMetadata(
contentType: contentType ?? this.contentType,
duration: duration ?? this.duration);
}
DubbingMediaMetadata copyWith({String? contentType, double? duration}) {
return DubbingMediaMetadata(
contentType: contentType ?? this.contentType,
duration: duration ?? this.duration);
}