repeat method
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, //
);
}