ServerChildRoute constructor

ServerChildRoute({
  1. required ServerReturnType returnType,
  2. required ServerStatusCode? httpCode,
  3. required ServerMimic? redirect,
  4. required String method,
  5. required String path,
  6. required ServerRouteAnnotations annotations,
  7. required String handlerName,
  8. required Iterable<ServerParam> params,
  9. required MetaWebSocketMethod? webSocket,
  10. required bool isSse,
})

Implementation

ServerChildRoute({
  required this.returnType,
  required this.httpCode,
  required this.redirect,
  required this.method,
  required this.path,
  required this.annotations,
  required this.handlerName,
  required this.params,
  required this.webSocket,
  required this.isSse,
});