AudioWaveform constructor

const AudioWaveform({
  1. Key? key,
  2. List<double> amplitudes = const [],
  3. double height = 300.0,
  4. double barWidth = 5.0,
  5. double barSpace = 2.0,
})

Implementation

const AudioWaveform(
    {super.key,
    this.amplitudes = const [],
    this.height = 300.0,
    this.barWidth = 5.0,
    this.barSpace = 2.0});