PlannerBucket constructor

PlannerBucket({
  1. String? id,
  2. String? name,
  3. String? planId,
  4. String? orderHint,
})

Creates a new PlannerBucket instance.

Implementation

PlannerBucket({
  this.id,
  this.name,
  this.planId,
  this.orderHint,
});