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