NavigationDrawerMenuFrame constructor

NavigationDrawerMenuFrame({
  1. required MenuMode menuMode,
  2. Color? menuBackgroundColor,
  3. required Widget body,
  4. required Builder menuBuilder,
  5. double? thinMenuWidth = 60,
  6. double? thickMenuWidth = 200,
})

Implementation

NavigationDrawerMenuFrame({
  required this.menuMode,
  this.menuBackgroundColor,
  required this.body,
  required this.menuBuilder,
  this.thinMenuWidth = 60,
  this.thickMenuWidth = 200,
});