NiceRouterState constructor

NiceRouterState({
  1. required List<NiceRoute> routes,
  2. String initialPath = '/',
})

Implementation

NiceRouterState({
  required this.routes,
  String initialPath = '/',
}) : _currentPath = initialPath {
  _parseRoutes();
}