copyWithWrapped method

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

Implementation

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