NZDrawer constructor

const NZDrawer({
  1. Key? key,
  2. required Widget child,
  3. NZDrawerPosition position = NZDrawerPosition.left,
  4. double? size,
  5. Color? backgroundColor,
  6. double elevation = 16.0,
  7. bool showDragHandle = true,
  8. double borderRadius = 16.0,
})

Implementation

const NZDrawer({
  super.key,
  required this.child,
  this.position = NZDrawerPosition.left,
  this.size,
  this.backgroundColor,
  this.elevation = 16.0,
  this.showDragHandle = true,
  this.borderRadius = 16.0,
});