PopupMenuThemeData constructor

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

Creates the set of properties used to configure PopupMenuTheme.

Implementation

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