BucketCors constructor

BucketCors({
  1. int? maxAgeSeconds,
  2. List<String>? method,
  3. List<String>? origin,
  4. List<String>? responseHeader,
})

Implementation

BucketCors({
  this.maxAgeSeconds,
  this.method,
  this.origin,
  this.responseHeader,
});