PopupMenuFilter constructor
const
PopupMenuFilter({
- Key? key,
- Object? initValue,
- void onSelected()?,
- double? elevation,
- EdgeInsetsGeometry padding = const EdgeInsets.all(8),
- Widget? icon,
- Offset offset = Offset.zero,
- bool enabled = true,
- ShapeBorder? shape,
- Color? color,
- double? iconSize,
- BorderRadiusGeometry? borderRadius,
- required Widget child,
- required List<
PopupMenuEntry< itemBuilder(Object> >- 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);