forward method

void forward()

Implementation

void forward() {
  animationController!
      .animateTo(1.0,
          duration: new Duration(milliseconds: 600), curve: Curves.ease)
      .then((_) {});
}