TimerView constructor

const TimerView({
  1. Key? key,
  2. required Color textColor,
  3. int duration = 0,
  4. double textSize = 16,
  5. void onUpdated(
    1. int
    )?,
})

Implementation

const TimerView({
  super.key,
  required this.textColor,
  this.duration = 0,
  this.textSize = 16,
  this.onUpdated,
});