copyWith method

SegmentTranscriptionResponse copyWith({
  1. int? version,
})

Implementation

SegmentTranscriptionResponse copyWith({int? version}) {
  return SegmentTranscriptionResponse(version: version ?? this.version);
}