BudgetConfig constructor

const BudgetConfig({
  1. LaborCostType laborCostType = LaborCostType.hourly,
  2. double laborRate = 40.0,
  3. double laborTime = 0.0,
  4. double fixedLaborCost = 0.0,
  5. double smallMaterialPercent = 3.0,
})

Implementation

const BudgetConfig({
  this.laborCostType = LaborCostType.hourly,
  this.laborRate = 40.0,
  this.laborTime = 0.0,
  this.fixedLaborCost = 0.0,
  this.smallMaterialPercent = 3.0,
});