Flutter3dDrawer constructor

const Flutter3dDrawer({
  1. Key? key,
  2. required DrawerControl controller,
  3. required Widget drawer,
  4. required Widget body,
  5. Color backgroundColor = const Color(0xffefefef),
  6. double maxSlide = 300,
  7. Duration? duration,
  8. Curve curve = Curves.easeInOut,
})

Implementation

const Flutter3dDrawer({
  Key? key,
  required this.controller,
  required this.drawer,
  required this.body,
  this.backgroundColor = const Color(0xffefefef),
  this.maxSlide = 300,
  this.duration,
  this.curve = Curves.easeInOut,
}) : super(key: key);