open method
Starts an animation to open the drawer.
Typically called by ScaffoldState.openDrawer.
Implementation
void open() {
_controller.fling(velocity: 1.0);
if (widget.drawerCallback != null)
widget.drawerCallback(true);
}
Starts an animation to open the drawer.
Typically called by ScaffoldState.openDrawer.
void open() {
_controller.fling(velocity: 1.0);
if (widget.drawerCallback != null)
widget.drawerCallback(true);
}