CorsConfig.development constructor
Development CORS configuration (permissive).
Implementation
factory CorsConfig.development() {
return const CorsConfig(
allowedOrigins: ['*'],
allowedMethods: ['*'],
allowedHeaders: ['*'],
credentials: false,
);
}