copyWith method

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

Implementation

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