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