getAllPagesWithConfigs method

  1. @override
List<(dynamic, dynamic)> getAllPagesWithConfigs(
  1. dynamic appAttributes
)

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;
}