copyWithWrapped method
Implementation
DubbingMediaMetadata copyWithWrapped(
{Wrapped<String>? contentType, Wrapped<double>? duration}) {
return DubbingMediaMetadata(
contentType:
(contentType != null ? contentType.value : this.contentType),
duration: (duration != null ? duration.value : this.duration));
}