VxTimerButton constructor

const VxTimerButton({
  1. Key? key,
  2. int? second,
  3. Color? bgColor,
  4. Color? textColor,
  5. dynamic button,
  6. VoidCallback? tap,
})

Implementation

const VxTimerButton({
  super.key,
  this.second,
  this.bgColor,
  this.textColor,
  this.button,
  this.tap,
});