PopupMenuThemeData constructor

const PopupMenuThemeData({
  1. Color? color,
  2. ShapeBorder? shape,
  3. EdgeInsetsGeometry? menuPadding,
  4. double? elevation,
  5. Color? shadowColor,
  6. Color? surfaceTintColor,
  7. TextStyle? textStyle,
  8. MaterialStateProperty<TextStyle?>? labelTextStyle,
  9. bool? enableFeedback,
  10. MaterialStateProperty<MouseCursor?>? mouseCursor,
  11. PopupMenuPosition? position,
  12. Color? iconColor,
  13. double? iconSize,
})

Creates the set of properties used to configure PopupMenuTheme.

Implementation

const PopupMenuThemeData({
  this.color,
  this.shape,
  this.menuPadding,
  this.elevation,
  this.shadowColor,
  this.surfaceTintColor,
  this.textStyle,
  this.labelTextStyle,
  this.enableFeedback,
  this.mouseCursor,
  this.position,
  this.iconColor,
  this.iconSize,
});