CountDown constructor

const CountDown({
  1. Key? key,
  2. CountDownController? controller,
  3. String? endTime,
  4. VoidCallback? onEnd,
  5. bool? autoStart,
  6. CountDownBuilder? builder,
  7. Duration? interval,
  8. VoidCallback? onStart,
  9. SecondBuild? secondBuild,
})

Implementation

const CountDown({Key? key, this.controller, this.endTime, this.onEnd, this.autoStart, this.builder, this.interval, this.onStart, this.secondBuild})
    : super(key: key);