IconScaffoldMenuButtonWidget constructor

const IconScaffoldMenuButtonWidget({
  1. Key? key,
  2. IconData? icon,
  3. Widget? text,
  4. GestureTapCallback? onTap,
  5. String? tooltip,
  6. bool disabled = false,
})

Implementation

const IconScaffoldMenuButtonWidget({
  Key? key,
  this.icon,
  this.text,
  this.onTap,
  this.tooltip,
  this.disabled = false,
})  : itemBuilder = null,
      popupButton = false,
      super(key: key);