FFProjectWalkthroughStep constructor
FFProjectWalkthroughStep({
- String? name,
- String? description,
- bool? disabled,
- FFProjectWalkthroughTarget? target,
- FFNodeKeyReference? componentKeyRef,
- FFProjectWalkthroughStep_ContentAlignment? contentAlignment,
- FFProjectWalkthroughStep_FocusShape? focusShape,
- FFColor? overlayColor,
- FFProjectWalkthroughStep_SkipAlignment? skipAlignment,
- FFPassedParameters? passedParameters,
Implementation
factory FFProjectWalkthroughStep({
$core.String? name,
$core.String? description,
$core.bool? disabled,
FFProjectWalkthroughTarget? target,
FFNodeKeyReference? componentKeyRef,
FFProjectWalkthroughStep_ContentAlignment? contentAlignment,
FFProjectWalkthroughStep_FocusShape? focusShape,
FFColor? overlayColor,
FFProjectWalkthroughStep_SkipAlignment? skipAlignment,
FFPassedParameters? passedParameters,
}) {
final result = create();
if (name != null) result.name = name;
if (description != null) result.description = description;
if (disabled != null) result.disabled = disabled;
if (target != null) result.target = target;
if (componentKeyRef != null) result.componentKeyRef = componentKeyRef;
if (contentAlignment != null) result.contentAlignment = contentAlignment;
if (focusShape != null) result.focusShape = focusShape;
if (overlayColor != null) result.overlayColor = overlayColor;
if (skipAlignment != null) result.skipAlignment = skipAlignment;
if (passedParameters != null) result.passedParameters = passedParameters;
return result;
}