FPopoverStyle constructor

const FPopoverStyle({
  1. required BoxDecoration decoration,
  2. ImageFilter barrierFilter(
    1. double animation
    )?,
  3. ImageFilter backgroundFilter(
    1. double animation
    )?,
  4. EdgeInsetsGeometry viewInsets = const EdgeInsets.all(5),
})

Creates a FPopoverStyle.

Implementation

const FPopoverStyle({
  required this.decoration,
  this.barrierFilter,
  this.backgroundFilter,
  this.viewInsets = const EdgeInsets.all(5),
});