MyCircularTimer constructor

const MyCircularTimer({
  1. required Color backgroundColor,
  2. Color fillColor = Colors.black,
  3. Color emptyColor = Colors.grey,
  4. required Color foregroundColor,
  5. required double value,
  6. required double size,
})

Implementation

const MyCircularTimer({
  required this.backgroundColor,
  this.fillColor = Colors.black,
  this.emptyColor = Colors.grey,
  required this.foregroundColor,
  required this.value,
  required this.size,
});