Stepo constructor

Stepo({
  1. required Key key,
  2. required int initialCounter,
  3. required dynamic onIncrementClicked(
    1. int
    ),
  4. required dynamic onDecrementClicked(
    1. int
    ),
  5. required Style style,
  6. required double width,
  7. required double height,
  8. required Color backgroundColor,
  9. required double fontSize,
  10. required double iconSize,
  11. required Color textColor,
  12. required Color iconColor,
  13. required int upperBound,
  14. required int lowerBound,
  15. required Duration animationDuration,
})

Implementation

Stepo({
  required Key key,
  required this.initialCounter,
  required this.onIncrementClicked,
  required this.onDecrementClicked,
  required this.style,
  required this.width,
  required this.height,
  required this.backgroundColor,
  required this.fontSize,
  required this.iconSize,
  required this.textColor,
  required this.iconColor,
  required this.upperBound,
  required this.lowerBound,
  required this.animationDuration,
}) : super(key: key);