ProgressBorderButton constructor

const ProgressBorderButton({
  1. Key? key,
  2. required int duration,
  3. required Size size,
  4. bool hasRadius = false,
  5. double strokeWidth = 3,
  6. required Color borderColor,
  7. required VoidCallback? onTimeEnd,
  8. required ProgressWidgetBuilder childBuild,
})

Implementation

const ProgressBorderButton({
  Key? key,
  required this.duration,
  required this.size,
  this.hasRadius = false,
  this.strokeWidth = 3,
  required this.borderColor,
  required this.onTimeEnd,
  required this.childBuild,
}) : super(key: key);