TurnCountdown constructor

const TurnCountdown({
  1. Key? key,
  2. required int deadline,
  3. int? windowMillis,
  4. TextStyle? style,
})

Implementation

const TurnCountdown({
  super.key,
  required this.deadline,
  this.windowMillis,
  this.style,
});