SoundLevelIndicator constructor

const SoundLevelIndicator({
  1. Key? key,
  2. double level = 0.0,
  3. Color color = Colors.blue,
  4. double size = 100,
})

Implementation

const SoundLevelIndicator({
  super.key,
  this.level = 0.0,
  this.color = Colors.blue,
  this.size = 100,
});