SmartDrawer constructor

const SmartDrawer({
  1. Key? key,
  2. double elevation = 0.0,
  3. required Widget child,
  4. String? semanticLabel,
  5. double? widthPercent = 0.35,
  6. BoxDecoration? decoration,
  7. DrawerCallback? callback,
})

Implementation

const SmartDrawer({
  Key? key,
  this.elevation = 0.0,
  required this.child,
  this.semanticLabel,
  this.widthPercent=0.35,
  this.decoration,
  this.callback,
})  :
      super(key: key);