BasicSeekbar constructor

const BasicSeekbar({
  1. Key? key,
  2. double min = 0,
  3. double max = 100,
  4. double value = 0,
  5. double? progressHeight,
  6. int? sectionCount,
  7. Color? sectionColor,
  8. Color? sectionUnSelectColor,
  9. double? sectionRadius,
  10. bool? showSectionText,
  11. List<SectionTextModel>? sectionTexts,
  12. double? sectionTextSize,
  13. bool? afterDragShowSectionText,
  14. Color? sectionTextColor,
  15. Color? sectionSelectTextColor,
  16. int? sectionDecimal,
  17. required double sectionTextMarginTop,
  18. Color? backgroundColor,
  19. Color? progressColor,
  20. String? semanticsLabel,
  21. String? semanticsValue,
  22. double? indicatorRadius,
  23. Color? indicatorColor,
  24. ValueChanged<ProgressValue>? onValueChanged,
  25. bool? isRound = true,
})

Implementation

const BasicSeekbar(
    {Key? key,
    this.min = 0,
    this.max = 100,
    this.value = 0,
    this.progressHeight,
    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.backgroundColor,
    this.progressColor,
    this.semanticsLabel,
    this.semanticsValue,
    this.indicatorRadius,
    this.indicatorColor,
    this.onValueChanged,
    this.isRound = true})
    : super(key: key);