CostEstimate constructor

const CostEstimate({
  1. required double totalCost,
  2. required double rows,
  3. required String method,
})

Implementation

const CostEstimate({
  required this.totalCost,
  required this.rows,
  required this.method,
});