Data constructor

Data({
  1. int? totalNEOMilesGiven,
  2. int? totalNoOfFounders,
  3. int? totalNoOfBookingsSold,
  4. double? totalProfit,
  5. String? totalProfitCurrency,
  6. int? totalNoOfFoundersSlots,
  7. int? totalNoOfSubscribers,
})

Implementation

Data(
    {this.totalNEOMilesGiven,
    this.totalNoOfFounders,
    this.totalNoOfBookingsSold,
    this.totalProfit,
    this.totalProfitCurrency,
    this.totalNoOfFoundersSlots,
    this.totalNoOfSubscribers});