close method

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

Closes the panel

Implementation

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