TicksPainter constructor

TicksPainter({
  1. required double min,
  2. required double max,
  3. required double value,
  4. required Size screenSize,
  5. HorizontalGaugeTheme? theme,
  6. bool showLabels = true,
  7. int? customTickCount,
  8. TickBuilder? tickBuilder,
})

Implementation

TicksPainter({
  required this.min,
  required this.max,
  required this.value,
  required this.screenSize,
  this.theme,
  this.showLabels = true,
  this.customTickCount,
  this.tickBuilder,
});