getAllPagesWithConfigs method

  1. @override
List<(Widget, StatefulBranchInfoProvider)> getAllPagesWithConfigs(
  1. 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;
}