show method

void show()

显示动画

Show animation.

Implementation

void show() {
  if (!_animationController.isCompleted) {
    _animationController.forward();
    notifyListeners(); // 通知监听者
  }
}