TimerCard constructor

const TimerCard({
  1. Key? key,
  2. String timeType = "minutes",
  3. String timeValue = "00",
  4. String color = "light",
  5. String size = "medium",
  6. String bgColor = "#000000",
  7. String? fontFamily,
})

Implementation

const TimerCard({
  super.key,
  this.timeType = "minutes",
  this.timeValue = "00",
  this.color = "light",
  this.size = "medium",
  this.bgColor = "#000000",
  // this.fontColor = "#000000",
  this.fontFamily,
});