PopupMenuThemeModifier constructor

const PopupMenuThemeModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. required PopupMenuThemeData data,
})

Creates a popup menu theme that controls the configurations for popup menus in its widget subtree.

The data argument must not be null.

Implementation

const PopupMenuThemeModifier({
  super.key,
  super.child,
  super.modifierKey,
  required this.data,
});