CountDown constructor

const CountDown({
  1. Key? key,
  2. TextStyle? style,
  3. required int duration,
})

Implementation

const CountDown({Key? key, this.style, required this.duration})
    : super(key: key);