copyWithWrapped method

SegmentTranscriptionResponse copyWithWrapped({
  1. Wrapped<int>? version,
})

Implementation

SegmentTranscriptionResponse copyWithWrapped({Wrapped<int>? version}) {
  return SegmentTranscriptionResponse(
      version: (version != null ? version.value : this.version));
}