Pricing constructor

Pricing({
  1. String? capCostType,
  2. DateTime? endDate,
  3. List<Flight>? flights,
  4. String? groupType,
  5. String? pricingType,
  6. DateTime? startDate,
})

Implementation

Pricing({
  this.capCostType,
  this.endDate,
  this.flights,
  this.groupType,
  this.pricingType,
  this.startDate,
});