copyWith method

ZwapRangeValuesDescription copyWith({
  1. ZwapRangeValues? values,
  2. bool? isExtentAtMin,
  3. bool? isExtentAtMax,
})

Implementation

ZwapRangeValuesDescription copyWith({
  ZwapRangeValues? values,
  bool? isExtentAtMin,
  bool? isExtentAtMax,
}) {
  return ZwapRangeValuesDescription(
    values: values ?? this.values,
    isExtentAtMin: isExtentAtMin ?? this.isExtentAtMin,
    isExtentAtMax: isExtentAtMax ?? this.isExtentAtMax,
  );
}