TimeoutWidget constructor

const TimeoutWidget({
  1. Key? key,
  2. required int totalMinutes,
  3. required int minutesLeft,
  4. Color? color = Colors.black,
  5. required Color appBackgroundColor,
  6. required double size,
  7. bool show = true,
})

Implementation

const TimeoutWidget({
  super.key,
  required this.totalMinutes,
  required this.minutesLeft,
  this.color = Colors.black,
  required this.appBackgroundColor,
  required this.size,
  this.show = true,
});