DrawerWidget constructor

DrawerWidget({
  1. Key? key,
  2. required WeDrawerPlacement placement,
  3. bool? mask,
  4. dynamic maskClick()?,
  5. int duration = 150,
  6. Color? background,
  7. required Widget? child,
})

Implementation

DrawerWidget(
    {Key? key,
    required this.placement,
    this.mask,
    this.maskClick,
    this.duration = 150,
    this.background,
    required this.child})
    : super(key: key);