FFCustomDialogAction constructor
FFCustomDialogAction({
- @Deprecated('This field is deprecated.') String? legacyComponentClassNodeKey,
- FFPassedParameters? passedParameters,
- FFDimensions? dimensions,
- @Deprecated('This field is deprecated.') FFValue? legacyBackgroundColor,
- FFValue? barrierColor,
- @Deprecated('This field is deprecated.') bool? legacyNonBlocking,
- bool? nonDismissible,
- bool? isGlobal,
- FFAlignment? followerAnchor,
- FFAlignment? targetAnchor,
- @Deprecated('This field is deprecated.') FFOffset? legacyOffset,
- bool? avoidOverflow,
- FFNodeKeyReference? componentClassNodeKeyRef,
Implementation
factory FFCustomDialogAction({
@$core.Deprecated('This field is deprecated.')
$core.String? legacyComponentClassNodeKey,
FFPassedParameters? passedParameters,
FFDimensions? dimensions,
@$core.Deprecated('This field is deprecated.')
FFValue? legacyBackgroundColor,
FFValue? barrierColor,
@$core.Deprecated('This field is deprecated.')
$core.bool? legacyNonBlocking,
$core.bool? nonDismissible,
$core.bool? isGlobal,
FFAlignment? followerAnchor,
FFAlignment? targetAnchor,
@$core.Deprecated('This field is deprecated.') FFOffset? legacyOffset,
$core.bool? avoidOverflow,
FFNodeKeyReference? componentClassNodeKeyRef,
}) {
final result = create();
if (legacyComponentClassNodeKey != null)
result.legacyComponentClassNodeKey = legacyComponentClassNodeKey;
if (passedParameters != null) result.passedParameters = passedParameters;
if (dimensions != null) result.dimensions = dimensions;
if (legacyBackgroundColor != null)
result.legacyBackgroundColor = legacyBackgroundColor;
if (barrierColor != null) result.barrierColor = barrierColor;
if (legacyNonBlocking != null) result.legacyNonBlocking = legacyNonBlocking;
if (nonDismissible != null) result.nonDismissible = nonDismissible;
if (isGlobal != null) result.isGlobal = isGlobal;
if (followerAnchor != null) result.followerAnchor = followerAnchor;
if (targetAnchor != null) result.targetAnchor = targetAnchor;
if (legacyOffset != null) result.legacyOffset = legacyOffset;
if (avoidOverflow != null) result.avoidOverflow = avoidOverflow;
if (componentClassNodeKeyRef != null)
result.componentClassNodeKeyRef = componentClassNodeKeyRef;
return result;
}