TkfBigButton constructor

const TkfBigButton({
  1. required Key testKey,
  2. Function? onClick,
  3. required String text,
  4. Key? key,
  5. EdgeInsets? buttonPadding,
  6. ButtonStyle? style,
  7. bool isLoading = false,
  8. ButtonType type = ButtonType.normal,
  9. bool useCountdown = false,
  10. int waitTime = 15,
  11. DateTime? lastSent,
  12. bool cancelTimer = false,
})

Implementation

const TkfBigButton(
    {required this.testKey,
    this.onClick,
    required this.text,
    super.key,
    this.buttonPadding,
    this.style,
    this.isLoading = false,
    this.type = ButtonType.normal,
    this.useCountdown = false,
    this.waitTime = 15,
    this.lastSent,
    this.cancelTimer = false});