copyWith method

DubbingMediaMetadata copyWith({
  1. String? contentType,
  2. double? duration,
})

Implementation

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