CustomDrawer constructor

CustomDrawer({
  1. Key? key,
  2. Color? backgroundColor,
  3. double? width,
  4. String? label,
})

Implementation

CustomDrawer({Key? key,
this.backgroundColor,
  this.width,
  this.label
}) : super(key: key);