PullDownMenuItemTheme constructor

const PullDownMenuItemTheme({
  1. Color? destructiveColor,
  2. double? iconSize,
  3. IconData? checkmark,
  4. FontWeight? checkmarkWeight,
  5. double? checkmarkSize,
  6. TextStyle? textStyle,
  7. TextStyle? iconActionTextStyle,
  8. Color? onHoverColor,
  9. TextStyle? onHoverTextStyle,
})

Creates the set of properties used to configure PullDownMenuItemTheme.

Implementation

const PullDownMenuItemTheme({
  this.destructiveColor,
  this.iconSize,
  this.checkmark,
  this.checkmarkWeight,
  this.checkmarkSize,
  this.textStyle,
  this.iconActionTextStyle,
  this.onHoverColor,
  this.onHoverTextStyle,
});