SimpleScaffoldMenuButtonWidget.popupButton constructor

const SimpleScaffoldMenuButtonWidget.popupButton({
  1. Key? key,
  2. required Text? text,
  3. List<PopupMenuEntry> itemBuilder(
    1. BuildContext
    )?,
  4. String? tooltip,
})

Implementation

const SimpleScaffoldMenuButtonWidget.popupButton(
    {Key? key, required this.text, this.itemBuilder, this.tooltip})
    : popupButton = true,
      this.onTap = null,
      super(key: key);