getAllPagesWithConfigs method
- AppAttributes appAttributes
override
Implementation
@override
List<(Widget, StatefulBranchInfoProvider)> getAllPagesWithConfigs(
AppAttributes appAttributes) {
List<(Widget, StatefulBranchInfoProvider)> allPagesAndConfigs = [];
allPagesAndConfigs += _getNavBarPagesAndConfigs(appAttributes);
allPagesAndConfigs += _getFooterPagesAndConfigs(appAttributes);
allPagesAndConfigs += _getBlogPagesAndConfigs(appAttributes);
allPagesAndConfigs += _getDataPagesAndConfigs(appAttributes);
allPagesAndConfigs += _getMediaCriticsPagesAndConfigs(appAttributes);
allPagesAndConfigs += _getErrorPagesAndConfigs(appAttributes);
return allPagesAndConfigs;
}