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. double? width,
  7. BoxDecoration? decoration,
  8. 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);