SlideToStart constructor

const SlideToStart({
  1. Key? key,
  2. required Function onSlide,
  3. EdgeInsetsGeometry? padding,
  4. String? text,
  5. TextStyle? textStyle,
  6. double? width,
  7. double? height,
  8. Color? backgroundColor,
  9. BorderRadiusGeometry? borderRadius,
  10. IconData? icon,
  11. Color? iconColor,
  12. Color? shimmerBaseColor,
  13. Color? shimmerHighLightColor,
  14. BorderType? dashedBorderType,
  15. Color? borderColor,
  16. double? borderWidth,
  17. Size? dashButtonSize,
  18. Color? dashButtonBorderColor,
  19. double? slideButtonRadius,
  20. Color? slideButtonColor,
})

Slide button color SlideToStart constructor

Implementation

/// SlideToStart constructor
const SlideToStart(
    {Key? key,
    required this.onSlide,
    this.padding,
    this.text,
    this.textStyle,
    this.width,
    this.height,
    this.backgroundColor,
    this.borderRadius,
    this.icon,
    this.iconColor,
    this.shimmerBaseColor,
    this.shimmerHighLightColor,
    this.dashedBorderType,
    this.borderColor,
    this.borderWidth,
    this.dashButtonSize,
    this.dashButtonBorderColor,
    this.slideButtonRadius,
    this.slideButtonColor})
    : super(key: key);