PatchBucketRequest constructor

PatchBucketRequest({
  1. String? name,
  2. String? description,
  3. List<PatchRetentionRule>? retentionRules = const [],
})

Returns a new PatchBucketRequest instance.

Implementation

PatchBucketRequest({
  this.name,
  this.description,
  this.retentionRules = const [],
});