close method

void close ()

Starts an animation to close the drawer.

Implementation

void close() {
  _controller.fling(velocity: -1.0);
  if (widget.drawerCallback != null)
    widget.drawerCallback(false);
}