num delay

The delay this Tween waits until it starts animating.

The delay may be changed as long as the animation has not been started.

Source

num get delay => _delay;
void delay=(num value)

Source

set delay(num value) {
  if (_started == false) {
    _currentTime = _currentTime + _delay - value;
    _delay = value;
  }
}