RouteDetail typedef

RouteDetail = ({List<FormalParameterElement> bodyParams, String functionName, bool ignoreForClient, String import, HttpMethod method, String path, Set<String> pathParams, bool requiresAuth, bool requiresSuperUserAuth, DartType returnType})

Represents the details of a server route extracted from annotated functions.

Implementation

typedef RouteDetail = ({
  String functionName,
  String import,
  HttpMethod method,
  List<FormalParameterElement> bodyParams,
  Set<String> pathParams,
  String path,
  bool ignoreForClient,
  DartType returnType,
  bool requiresAuth,
  bool requiresSuperUserAuth,
});