CORSRule constructor

CORSRule(
  1. String? allowedHeaders,
  2. String? allowedMethods,
  3. String? allowedOrigins,
  4. String? exposeHeaders,
  5. int? maxAgeSeconds,
)

Implementation

CORSRule(
  this.allowedHeaders,
  this.allowedMethods,
  this.allowedOrigins,
  this.exposeHeaders,
  this.maxAgeSeconds,
);