FFProjectWalkthrough constructor
FFProjectWalkthrough({
- FFIdentifier? identifier,
- String? name,
- FFNodeKeyReference? pageKeyRef,
- String? description,
- Iterable<
FFProjectWalkthroughStep> ? steps,
Implementation
factory FFProjectWalkthrough({
FFIdentifier? identifier,
$core.String? name,
FFNodeKeyReference? pageKeyRef,
$core.String? description,
$core.Iterable<FFProjectWalkthroughStep>? steps,
}) {
final result = create();
if (identifier != null) result.identifier = identifier;
if (name != null) result.name = name;
if (pageKeyRef != null) result.pageKeyRef = pageKeyRef;
if (description != null) result.description = description;
if (steps != null) result.steps.addAll(steps);
return result;
}