Bucket constructor

Bucket({
  1. String? location,
  2. String? name,
  3. bool? reconciling,
})

Implementation

Bucket({
  this.location,
  this.name,
  this.reconciling,
});