PopupMenuFilter constructor

const PopupMenuFilter({
  1. Key? key,
  2. Object? initValue,
  3. void onSelected(
    1. Object?
    )?,
  4. double? elevation,
  5. EdgeInsetsGeometry padding = const EdgeInsets.all(8),
  6. Widget? icon,
  7. Offset offset = Offset.zero,
  8. bool enabled = true,
  9. ShapeBorder? shape,
  10. Color? color,
  11. double? iconSize,
  12. BorderRadiusGeometry? borderRadius,
  13. required Widget child,
  14. required List<PopupMenuEntry<Object>> itemBuilder(
    1. BuildContext context
    ),
})

Implementation

const PopupMenuFilter(
    {Key? key,
    this.initValue,
    this.onSelected,
    this.elevation,
    this.padding = const EdgeInsets.all(8),
    this.icon,
    this.offset = Offset.zero,
    this.enabled = true,
    this.shape,
    this.color,
    this.iconSize,
    this.borderRadius,
    required this.child,
    required this.itemBuilder})
    : super(key: key);