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