WaveformDisplay constructor

const WaveformDisplay({
  1. Key? key,
  2. double soundLevel = 0.0,
  3. Color color = Colors.blue,
  4. double height = 60,
  5. bool isActive = true,
})

Implementation

const WaveformDisplay({
  super.key,
  this.soundLevel = 0.0,
  this.color = Colors.blue,
  this.height = 60,
  this.isActive = true,
});