copyWith method

QuantisationRange$Response copyWith({
  1. String? quantisationRange,
})

Implementation

QuantisationRange$Response copyWith({String? quantisationRange}) {
  return QuantisationRange$Response(
      quantisationRange: quantisationRange ?? this.quantisationRange);
}