copyWith method
HtmlExportOptions
copyWith(
{ - bool? includeSpeakers,
- bool? includeTimestamps,
- String? format,
- dynamic segmentOnSilenceLongerThanS,
- dynamic maxSegmentDurationS,
- dynamic maxSegmentChars,
})
Implementation
HtmlExportOptions copyWith(
{bool? includeSpeakers,
bool? includeTimestamps,
String? format,
dynamic segmentOnSilenceLongerThanS,
dynamic maxSegmentDurationS,
dynamic maxSegmentChars}) {
return HtmlExportOptions(
includeSpeakers: includeSpeakers ?? this.includeSpeakers,
includeTimestamps: includeTimestamps ?? this.includeTimestamps,
format: format ?? this.format,
segmentOnSilenceLongerThanS:
segmentOnSilenceLongerThanS ?? this.segmentOnSilenceLongerThanS,
maxSegmentDurationS: maxSegmentDurationS ?? this.maxSegmentDurationS,
maxSegmentChars: maxSegmentChars ?? this.maxSegmentChars);
}