Bucket constructor

Bucket({
  1. int? count,
  2. String? value,
})

Implementation

Bucket({
  this.count,
  this.value,
});