copyWith method

Intensity$Response copyWith({
  1. double? intensity,
})

Implementation

Intensity$Response copyWith({double? intensity}) {
  return Intensity$Response(intensity: intensity ?? this.intensity);
}