Bin constructor

Bin({
  1. double? density,
  2. Object? end,
  3. Object? start,
})

Implementation

Bin({
  this.density,
  this.end,
  this.start,
});