ServerRoute.fromMeta constructor

ServerRoute.fromMeta(
  1. MetaMethod method
)

Implementation

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