ServerRoute constructor

ServerRoute({
  1. required Iterable<ServerParam> params,
  2. required String handlerName,
  3. required ServerRouteAnnotations annotations,
})

Implementation

ServerRoute({
  required this.params,
  required this.handlerName,
  required this.annotations,
});