EnhancedParser constructor

const EnhancedParser({
  1. bool enablePathParams = true,
  2. bool enableQueryParams = true,
  3. bool enableValidation = false,
  4. Map<String, String>? routeAliases,
  5. List<RoutePattern>? patterns,
  6. String? defaultRoute,
})

Implementation

const EnhancedParser({
  this.enablePathParams = true,
  this.enableQueryParams = true,
  this.enableValidation = false,
  this.routeAliases,
  this.patterns,
  this.defaultRoute,
});