SideDrawer constructor

const SideDrawer({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. required Widget child,
  5. Color? backgroundColor = Colors.white,
})

Implementation

const SideDrawer({
  super.key,
  this.width,
  this.height,
  required this.child,
  this.backgroundColor = Colors.white,
});