openRight method

void openRight()

Opens the right hidden page.

Sets the active side to RevealSide.right, notifies listeners, and starts the animation.

Implementation

void openRight() {
  _side = RevealSide.right;
  notifyListeners();
  _animationController.fling(velocity: 1);
}