DrawerStyle constructor

const DrawerStyle({
  1. double? width,
  2. Color? backgroundColor,
  3. Color? barrierColor,
  4. BorderRadius? borderRadius,
  5. List<BoxShadow>? boxShadow,
  6. Duration? animationDuration,
  7. Curve? animationCurve,
  8. DrawerPosition position = DrawerPosition.right,
})

Implementation

const DrawerStyle({
  this.width,
  this.backgroundColor,
  this.barrierColor,
  this.borderRadius,
  this.boxShadow,
  this.animationDuration,
  this.animationCurve,
  this.position = DrawerPosition.right,
});