SmartDrawer constructor
      const
      SmartDrawer({ 
    
    
- Key? key,
- double elevation = 0.0,
- required Widget child,
- String? semanticLabel,
- double? widthPercent = 0.35,
- double? width,
- BoxDecoration? decoration,
- DrawerCallback? callback,
Implementation
const SmartDrawer({
  Key? key,
  this.elevation = 0.0,
  required this.child,
  this.semanticLabel,
  this.widthPercent = 0.35,
  this.width,
  this.decoration,
  this.callback,
}) : super(key: key);