Data constructor

Data({
  1. Parameters? parameters,
  2. String? sId,
  3. List<TripModel>? results,
  4. bool? searchCredit,
  5. bool? discounted,
  6. double? average,
  7. int? count,
  8. int? highestDicountPercentage,
  9. String? userId,
  10. String? createdAt,
  11. String? updatedAt,
  12. int? iV,
  13. double? highestOnlinePrice,
  14. double? highestDiscountedPrice,
  15. String? highestOnlinePriceProviderCode,
  16. String? highestOnlinePriceProviderLogoUrl,
  17. String? highestOnlinePriceProviderName,
  18. int? searchCreditUsed,
})

Implementation

Data(
    {this.parameters,
    this.sId,
    this.results,
    this.searchCredit,
    this.discounted,
    this.average,
    this.count,
    this.highestDicountPercentage,
    this.userId,
    this.createdAt,
    this.updatedAt,
    this.iV,
    this.highestOnlinePrice,
    this.highestDiscountedPrice,
    this.highestOnlinePriceProviderCode,
    this.highestOnlinePriceProviderLogoUrl,
    this.highestOnlinePriceProviderName,
    this.searchCreditUsed,
    });