Bucket constructor

Bucket({
  1. DateTime? creationDate,
  2. String? name,
})

Implementation

Bucket({
  this.creationDate,
  this.name,
});