MoonDrawer constructor

const MoonDrawer({
  1. Key? key,
  2. BorderRadiusGeometry? borderRadius,
  3. Color? backgroundColor,
  4. Color? barrierColor,
  5. Decoration? decoration,
  6. double? width,
  7. List<BoxShadow>? drawerShadows,
  8. String? semanticLabel,
  9. required Widget child,
})

Creates a Moon Design drawer.

Implementation

const MoonDrawer({
  super.key,
  this.borderRadius,
  this.backgroundColor,
  this.barrierColor,
  this.decoration,
  this.width,
  this.drawerShadows,
  this.semanticLabel,
  required this.child,
});