showLeftSideDrawer method

void showLeftSideDrawer({
  1. AFNavigatePushAction? navigate,
})
inherited

Open the drawer that you specified for your Scaffold.

You may optionally specify the optional screenId (which must match the screen id of the drawer you specified to the scaffold) and param. The route parameter for a drawer is stored in the global pool. The first time your drawer is shown, it will use the param you pass to this function, or if you omit it, then your AFDrawerConfig.createDefaultRouteParam method will be called to create it the very first time the drawer is shown. Subsequently, it will use the param you pass to this function, or if you omit it, the value that is already in the global route pool.

Implementation

void showLeftSideDrawer({
  AFNavigatePushAction? navigate
}) {
  showDrawerStatic(
    dispatch: this.dispatch,
    flutterContext: flutterContext,
    navigate: navigate
  );
}