copyWith method

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

Implementation

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