CountdownText.fromValues constructor
Implementation
CountdownText.fromValues({
required int hours,
required int minutes,
required int seconds,
}) : hours = NumberFormat('##,#00').format(hours),
minutes = _twoDigits(minutes),
seconds = _twoDigits(seconds);