Timeout constructor

Timeout(
  1. String name, {
  2. required List<Widget> children,
  3. required Time ticks,
  4. String path = 'timers',
})

A Timeout is a simple delay in your code. It is done with the Schedule Command and generates a File under the hood.

Implementation

Timeout(
  this.name, {
  required this.children,
  required this.ticks,
  this.path = 'timers',
});