HorizontalBar constructor

const HorizontalBar({
  1. Key? key,
  2. required Color verticalBarTextStyleColor,
  3. required String name,
  4. required Color barColor,
  5. Color? barColorTwo,
  6. required double barSize,
  7. required double barInterver,
  8. bool isItDouble = false,
  9. required double barSizeTwo,
  10. required double horizontalBarPadding,
})

Implementation

const HorizontalBar({
  super.key,
  required this.verticalBarTextStyleColor,
  required this.name,
  required this.barColor,
  this.barColorTwo,
  required this.barSize,
  required this.barInterver,
  this.isItDouble = false,
  required this.barSizeTwo,
  required this.horizontalBarPadding,
});