RouteMatch constructor

RouteMatch({
  1. RouteMatchType matchType = RouteMatchType.noMatch,
  2. Route? route,
  3. String errorMessage = "Unable to match route. Please check the logs.",
  4. required Handler handler,
  5. Map<String, List<String>>? parameters,
  6. dynamic object,
})

Implementation

RouteMatch({
  this.matchType = RouteMatchType.noMatch,
  this.route,
  this.errorMessage = "Unable to match route. Please check the logs.",
  required this.handler,
  this.parameters,
  this.object,
});