FDialogStyle constructor

FDialogStyle({
  1. required Decoration decoration,
  2. required FVariants<FDialogAxisVariantConstraint, FDialogAxisVariant, FDialogContentStyle, FDialogContentStyleDelta> contentStyle,
  3. ImageFilter backgroundFilter(
    1. double animation
    )?,
  4. FVariants<FDialogAxisVariantConstraint, FDialogAxisVariant, bool, Delta> slideableActions = const .all(false),
  5. EdgeInsetsGeometry insetPadding = const .symmetric(horizontal: 40, vertical: 24),
  6. FDialogMotion motion = const FDialogMotion(),
})

Creates a FDialogStyle.

Implementation

FDialogStyle({
  required this.decoration,
  required this.contentStyle,
  this.backgroundFilter,
  this.slideableActions = const .all(false),
  this.insetPadding = const .symmetric(horizontal: 40, vertical: 24),
  this.motion = const FDialogMotion(),
});