A client routing library for Dart
More...
UrlMatcher.urlParameterNames has been changed from a method to a getter. The client code must be updated accordingly:
UrlMatcher.urlParameterNames
Before:
var names = urlMatcher.urlParameterNames();
After:
var names = urlMatcher.urlParameterNames;
unverified uploader
Repository (GitHub)View/report issues
unknown (license)
browser, logging
Packages that depend on route_hierarchical
Back