TIdleTimer constructor

const TIdleTimer({
  1. Key? key,
  2. bool enabled = true,
  3. int interval = 1000,
  4. VoidCallback? onTimer,
  5. Widget? child,
})

Implementation

const TIdleTimer({
  super.key,
  this.enabled = true,
  this.interval = 1000,
  this.onTimer,
  this.child,
});