Bucket constructor

Bucket({
  1. int? max,
  2. int? min,
  3. double? proportion,
})

Implementation

Bucket({
  this.max,
  this.min,
  this.proportion,
});