BasicSeekbar constructor

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

Implementation

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