PlatformPopupMenuButton<T> constructor

PlatformPopupMenuButton<T>({
  1. Key? key,
  2. Widget? child,
  3. required List<PlatformPopupMenuEntry<T>> itemBuilder(
    1. BuildContext context
    ),
  4. void onSelected(
    1. T value
    )?,
  5. Widget? title,
  6. Widget? message,
  7. Widget? icon,
  8. EdgeInsets? cupertinoButtonPadding,
})

Implementation

PlatformPopupMenuButton({
  Key? key,
  this.child,
  required this.itemBuilder,
  this.onSelected,
  this.title,
  this.message,
  this.icon,
  this.cupertinoButtonPadding,
}) : super(key: key);