SeekBarPainter constructor

SeekBarPainter({
  1. Color? backgroundColor,
  2. Color? progressColor,
  3. double? value,
  4. double? min,
  5. double? max,
  6. double? indicatorRadius,
  7. Color? indicatorColor,
  8. double? radius,
  9. int? sectionCount,
  10. Color? sectionColor,
  11. Color? sectionUnSelectColor,
  12. double? sectionRadius,
  13. bool? showSectionText,
  14. List<SectionTextModel>? sectionTexts,
  15. double? sectionTextSize,
  16. bool? afterDragShowSectionText,
  17. Color? sectionTextColor,
  18. Color? sectionSelectTextColor,
  19. int? sectionDecimal,
  20. required double sectionTextMarginTop,
  21. double? progressHeight,
  22. bool? hideBubble,
  23. bool? alwaysShowBubble,
  24. double? bubbleRadius,
  25. double? bubbleHeight,
  26. Color? bubbleColor,
  27. Color? bubbleTextColor,
  28. double? bubbleTextSize,
  29. double? bubbleMargin,
  30. bool? bubbleInCenter,
})

Implementation

SeekBarPainter(
    {this.backgroundColor,
    this.progressColor,
    this.value,
    this.min,
    this.max,
    this.indicatorRadius,
    this.indicatorColor,
    this.radius,
    this.sectionCount,
    this.sectionColor,
    this.sectionUnSelectColor,
    this.sectionRadius,
    this.showSectionText,
    this.sectionTexts,
    this.sectionTextSize,
    this.afterDragShowSectionText,
    this.sectionTextColor,
    this.sectionSelectTextColor,
    this.sectionDecimal,
    required this.sectionTextMarginTop,
    this.progressHeight,
    this.hideBubble,
    this.alwaysShowBubble,
    this.bubbleRadius,
    this.bubbleHeight,
    this.bubbleColor,
    this.bubbleTextColor,
    this.bubbleTextSize,
    this.bubbleMargin,
    this.bubbleInCenter});