WuiDrawerButton constructor

const WuiDrawerButton({
  1. Key? key,
  2. Function? onPressed,
  3. String? text,
  4. IconData? icon,
  5. bool? active = false,
})

Implementation

const WuiDrawerButton({
  Key? key,
  this.onPressed,
  this.text,
  this.icon,
  this.active = false
}) : super(key: key);