delayS method

AnimatedBuilder delayS(
  1. int seconds
)

delay-{number}s - 设置动画延迟时间(秒)

Implementation

AnimatedBuilder delayS(int seconds) {
  _delay = Duration(seconds: seconds);
  return this;
}