HiddenDrawer constructor

HiddenDrawer({
  1. required Widget child,
  2. required Widget drawer,
  3. double drawerBlurRadius = 12,
  4. double drawerWidth = 250,
  5. double drawerHeaderHeight = 250,
  6. Key? key,
})

Implementation

HiddenDrawer(
    {required this.child,
    required this.drawer,
    this.drawerBlurRadius = 12,
    this.drawerWidth = 250,
    this.drawerHeaderHeight = 250,
    Key? key})
    : super(key: key);