copyWithWrapped method

Intensity$Response copyWithWrapped({
  1. Wrapped<double?>? intensity,
})

Implementation

Intensity$Response copyWithWrapped({Wrapped<double?>? intensity}) {
  return Intensity$Response(
      intensity: (intensity != null ? intensity.value : this.intensity));
}