FFProjectWalkthroughStep constructor

FFProjectWalkthroughStep({
  1. String? name,
  2. String? description,
  3. bool? disabled,
  4. FFProjectWalkthroughTarget? target,
  5. FFNodeKeyReference? componentKeyRef,
  6. FFProjectWalkthroughStep_ContentAlignment? contentAlignment,
  7. FFProjectWalkthroughStep_FocusShape? focusShape,
  8. FFColor? overlayColor,
  9. FFProjectWalkthroughStep_SkipAlignment? skipAlignment,
  10. 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;
}