Repeat constructor

Repeat(
  1. String name, {
  2. required Widget child,
  3. required int to,
  4. String counter = 'objd_repeat',
  5. String path = 'timers',
  6. Time ticks = const Time(0),
})

The Repeat Widget repeats a given action multiple times with a time delay.

Implementation

Repeat(
  this.name, {
  required this.child,
  required this.to,
  this.counter = 'objd_repeat',
  this.path = 'timers',
  this.ticks = const Time(0),
});