TimerScreen constructor

TimerScreen({
  1. required int seconds,
  2. dynamic onUpdate(
    1. int
    )?,
  3. bool isPlaying = true,
  4. VoidCallback? onTimerClick,
  5. bool isAuthenticated = false,
  6. int totalSeconds = 900,
})

Implementation

TimerScreen({
  required this.seconds,
  this.onUpdate,
  this.isPlaying = true,
  this.onTimerClick,
  this.isAuthenticated = false,
  this.totalSeconds = 900,
});