copyWith method

  1. @useResult
FPopoverStyle copyWith({
  1. BoxDecoration? decoration,
  2. ImageFilter barrierFilter(
    1. double
    )?,
  3. ImageFilter backgroundFilter(
    1. double
    )?,
  4. EdgeInsetsGeometry? viewInsets,
})

Returns a copy of this FPopoverStyle with the given properties replaced.

Consider using the CLI to generate a style.

Parameters

Implementation

@useResult
FPopoverStyle copyWith({
  BoxDecoration? decoration,
  ImageFilter Function(double)? barrierFilter,
  ImageFilter Function(double)? backgroundFilter,
  EdgeInsetsGeometry? viewInsets,
}) => FPopoverStyle(
  decoration: decoration ?? this.decoration,
  barrierFilter: barrierFilter ?? this.barrierFilter,
  backgroundFilter: backgroundFilter ?? this.backgroundFilter,
  viewInsets: viewInsets ?? this.viewInsets,
);