Cors typedef
Alias for the framework CORS middleware.
This typedef allows the middleware to be referenced using the shorter
Cors name in route and middleware declarations.
Example:
router.get(
'/api/users',
handler: (request) async => index(request),
middleware: [Cors.middleware],
);
Implementation
typedef Cors = CorsMiddleware;