pagesMap property

  1. @override
Map<String, PageFactory> pagesMap
final

The map holding the page names and their factories.

Implementation

@override
final Map<String, _i2.PageFactory> pagesMap = {
  UserDashboardRoute.name: (routeData) {
    return _i2.AutoRoutePage<dynamic>(
      routeData: routeData,
      child: const _i1.UserDashboardPage(),
    );
  }
};