NbpWaveWidget constructor

const NbpWaveWidget({
  1. Key? key,
  2. double? firstWaveHeight,
  3. double? secondWaveHeight,
  4. double? thirdWaveHeight,
  5. Color? firstWaveColor,
  6. Color? secondWaveColor,
  7. Color? thirdWaveColor,
})

Implementation

const NbpWaveWidget({
  super.key,
  this.firstWaveHeight,
  this.secondWaveHeight,
  this.thirdWaveHeight,
  this.firstWaveColor,
  this.secondWaveColor,
  this.thirdWaveColor,
});