createBranches method

List createBranches(
  1. dynamic appAttributes
)

Implementation

List<StatefulShellBranch> createBranches(AppAttributes appAttributes) {
  List<(Widget, StatefulBranchInfoProvider)> allPagesWithConfigs =
      getAllPagesWithConfigs(appAttributes);
  return createStatefulShellBranches(appAttributes, allPagesWithConfigs);
}