BasicSeekbar constructor

const BasicSeekbar({
  1. Key? key,
  2. double? min,
  3. double? max,
  4. double? value,
  5. double? progresseight,
  6. int? sectionCount,
  7. Color? sectionColor,
  8. Color? sectionUnSelecteColor,
  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. 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,
})

Implementation

const BasicSeekbar(
    {Key? key,
      this.min,
      this.max,
      this.value,
      this.progresseight,
      this.sectionCount,
      this.sectionColor,
      this.sectionUnSelecteColor,
      this.sectionRadius,
      this.showSectionText,
      this.sectionTexts,
      this.sectionTextSize,
      this.afterDragShowSectionText,
      this.sectionTextColor,
      this.sectionSelectTextColor,
      this.sectionDecimal,
      this.sectionTextMarginTop,
      this.backgroundColor,
      this.progressColor,
      this.semanticsLabel,
      this.semanticsValue,
      this.indicatorRadius,
      this.indicatorColor,
      this.onValueChanged,
      this.isRound})
    : super(key: key);