Report constructor

Report({
  1. double? actualDistance,
  2. String? partID,
  3. double? maintenanceCost,
  4. String? maintenanceDescription,
  5. double? otherCost,
  6. double? partCost,
  7. String? partName,
  8. String? systemName,
})

Implementation

Report(
    // TODO to be tested
    {this.actualDistance,
    this.partID,
    this.maintenanceCost,
    this.maintenanceDescription,
    this.otherCost,
    this.partCost,
    this.partName,
    this.systemName});