GTFTimerButton constructor

const GTFTimerButton({
  1. Key? key,
  2. Function? onTap,
  3. VoidCallback? countingTap,
  4. VoidCallback? countComplete,
  5. String? text,
  6. String? countText,
  7. int? timeCount,
  8. double? fontSize,
  9. FontWeight? fontWeight,
  10. Color? textColor,
  11. Color? countTextColor,
})

Implementation

const GTFTimerButton({
  Key? key,
  this.onTap,
  this.countingTap,
  this.countComplete,
  this.text,
  this.countText,
  this.timeCount,
  this.fontSize,
  this.fontWeight,
  this.textColor,
  this.countTextColor,
}) : super(key: key);