AnimatedWaveList constructor

const AnimatedWaveList({
  1. Key? key,
  2. required Stream<Amplitude> stream,
  3. Color? barColor,
  4. int? maxHeight,
})

Creates an AnimatedWaveList widget.

stream is the stream of amplitude values to display.

Implementation

const AnimatedWaveList({
  super.key,
  required this.stream,
  this.barColor,
  this.maxHeight,
});