Bucket constructor

Bucket({
  1. required String name,
  2. String? location,
  3. String? createDate,
  4. String? type,
})

Implementation

Bucket({
  required this.name,
  this.location,
  this.createDate,
  this.type,
});