repeat method

Tween repeat([
  1. int times = 0
])

Implementation

Tween repeat([int times = 0]) {
  this._initialRepeat = times;
  this._repeat = times;
  return this;
}