open method

void open({
  1. double velocity = 1.0,
})

Opens the panel

Implementation

void open({double velocity = 1.0}) {
  _animationController.fling(velocity: velocity.abs());
}