HorizontalBar constructor

const HorizontalBar({
  1. Key? key,
  2. required Color verticalBarTextStyleColor,
  3. required String name,
  4. required Color barColor,
  5. required double barSize,
  6. required double barInterver,
})

Implementation

const HorizontalBar({
  super.key,
  required this.verticalBarTextStyleColor,
  required this.name,
  required this.barColor,
  required this.barSize,
  required this.barInterver,
});