IconScaffoldMenuButtonWidget.popupButton constructor

const IconScaffoldMenuButtonWidget.popupButton({
  1. Key? key,
  2. IconData? icon,
  3. Widget? text,
  4. List<PopupMenuEntry> itemBuilder(
    1. BuildContext
    )?,
  5. String? tooltip,
  6. bool disabled = false,
})

Implementation

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