FFProjectWalkthrough constructor

FFProjectWalkthrough({
  1. FFIdentifier? identifier,
  2. String? name,
  3. FFNodeKeyReference? pageKeyRef,
  4. String? description,
  5. 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;
}