FPopoverMenuStyle constructor

const FPopoverMenuStyle({
  1. required FItemGroupStyle itemGroupStyle,
  2. required FTileGroupStyle tileGroupStyle,
  3. required BoxDecoration decoration,
  4. double maxWidth = 250,
  5. ImageFilter barrierFilter(
    1. double animation
    )?,
  6. ImageFilter backgroundFilter(
    1. double animation
    )?,
  7. EdgeInsetsGeometry viewInsets = const EdgeInsets.all(5),
})

Creates a FPopoverMenuStyle.

Implementation

const FPopoverMenuStyle({
  required this.itemGroupStyle,
  required this.tileGroupStyle,
  required super.decoration,
  this.maxWidth = 250,
  super.barrierFilter,
  super.backgroundFilter,
  super.viewInsets,
}) : assert(0 < maxWidth, 'maxWidth ($maxWidth) must be > 0');