YDrawer constructor

YDrawer({
  1. Key? key,
  2. double elevation = 16.0,
  3. Widget? child,
  4. String? semanticLabel,
  5. double widthPercent = 0.8,
  6. DrawerCallback? callback,
})

Implementation

YDrawer({
  Key? key,
  this.elevation = 16.0,
  this.child,
  this.semanticLabel,
  this.widthPercent = 0.8,
  this.callback,
}) : super(key: key);