FFProjectWalkthroughs constructor

FFProjectWalkthroughs({
  1. Iterable<FFProjectWalkthrough>? walkthroughs,
})

Implementation

factory FFProjectWalkthroughs({
  $core.Iterable<FFProjectWalkthrough>? walkthroughs,
}) {
  final result = create();
  if (walkthroughs != null) result.walkthroughs.addAll(walkthroughs);
  return result;
}