repeat method

TickerFuture repeat({
  1. double? min,
  2. double? max,
  3. bool reverse = false,
  4. Duration? period,
  5. int? count,
})

Implementation

TickerFuture repeat({
  double? min,
  double? max,
  bool reverse = false,
  Duration? period,
  int? count,
}) {
  return _hooked.repeat(
    min: min,
    max: max,
    reverse: reverse,
    period: period,
    count: count, //
  );
}