CacheControlBox constructor

CacheControlBox({
  1. int? id,
  2. int? maxAge,
  3. String? privacy,
  4. bool? noCache,
  5. bool? noStore,
  6. List<String>? other,
})

Implementation

CacheControlBox({
  this.id,
  this.maxAge,
  this.privacy,
  this.noCache,
  this.noStore,
  this.other,
});