copyWithWrapped method

DubbingMediaMetadata copyWithWrapped({
  1. Wrapped<String>? contentType,
  2. Wrapped<double>? duration,
})

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));
}