BookingData constructor

BookingData({
  1. BookingCategory? daily,
  2. BookingCategory? monthly,
  3. BookingCategory? lifetime,
  4. BookingCategory? weekly,
  5. int? highestPercentage,
})

Implementation

BookingData({
    this.daily,
    this.monthly,
    this.lifetime,
    this.weekly,
    this.highestPercentage,
});