ServerRoute.fromMeta constructor
ServerRoute.fromMeta(
- MetaMethod method
Implementation
factory ServerRoute.fromMeta(MetaMethod method) {
return ServerRoute(
handlerName: method.name,
params: method.params.map(ServerParam.fromMeta).toList(),
annotations: ServerRouteAnnotations.fromRoute(method),
);
}