TimerCard constructor

const TimerCard({
  1. Key? key,
  2. required int timeRemaining,
  3. required Color backgroundColor,
  4. required bool showClockIcon,
})

Implementation

const TimerCard(
    {super.key,
    required this.timeRemaining,
    required this.backgroundColor,
    required this.showClockIcon});