copyWith method

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

Implementation

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