openLeft method
void
openLeft()
Opens the left hidden page.
This method sets the active side to RevealSide.left, notifies any listeners of the change, and starts the animation with a positive fling.
Implementation
void openLeft() {
_side = RevealSide.left;
notifyListeners();
_animationController.fling(velocity: 1);
}