RouteMatch constructor

RouteMatch({
  1. RouteMatchType matchType = RouteMatchType.noMatch,
  2. Route? route,
  3. String errorMessage = "Unable to match route. Please check the logs.",
})

Implementation

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