The delay this AnimatableChain
waits until it starts animating.
The delay may be changed as long as the animation has not been started.
Source
num get delay => _delay;
Source
set delay(num value) { if (_started == false) { _time = _time + _delay - value; _delay = value; } }