initMenu method
void
initMenu(
- BuildContext context, {
- bool persistent = false,
- double? width,
- double? height,
- EdgeInsets? btnMargin,
Implementation
void initMenu(
BuildContext context,
{
bool persistent = false,
required WidgetBuilder menu,
WidgetBuilder? menuFooter,
WidgetBuilder? menuHeader,
double? width,
double? height,
EdgeInsets? btnMargin,
}
) {
parentContext = context;
this.menu = menu;
this.menuFooter = menuFooter;
this.menuHeader = menuHeader;
this.width = width;
this.height = height;
this.btnMargin = btnMargin;
}