VerticalVoiceBar constructor

const VerticalVoiceBar({
  1. Key? key,
  2. required double height,
  3. double width = 4,
  4. Color color = Colors.grey,
  5. required double opacity,
})

Implementation

const VerticalVoiceBar({
  super.key,
  required this.height,
  this.width = 4,
  this.color = Colors.grey,
  required this.opacity,
});