initialRoutes property

set initialRoutes (String path)

Implementation

static set initialRoutes(String path) {
  _._routes = path.split(_._separator).where((segment) {
    if (segment.isEmpty) return false;
    if (isIgnorableRoute(segment)) return false;
    return isSupportedRoute(segment);
  }).toList();
  _._n();
}