RouteInfo constructor

RouteInfo({
  1. required String fullRoute,
  2. required HttpMethodType httpMethod,
  3. required HttpMethodInfo httpMethodInfo,
})

Creates a RouteInfo for a specific path + method combination.

Implementation

RouteInfo({
  required this.fullRoute,
  required this.httpMethod,
  required this.httpMethodInfo,
});