BookingModel constructor

BookingModel({
  1. String? id,
  2. required String uid,
  3. String? name,
  4. DateTime? requestDate,
  5. String? route,
  6. int? numPassengers,
  7. String? flightClass,
  8. DateTime? departureDate,
  9. bool isCorporate = false,
  10. String? assignee,
  11. String? status,
  12. String? plan,
  13. String? imageUrl,
})

Implementation

BookingModel({
  this.id,
  required this.uid,
  this.name,
  this.requestDate,
  this.route,
  this.numPassengers,
  this.flightClass,
  this.departureDate,
  this.isCorporate = false,
  this.assignee,
  this.status,
  this.plan,
  this.imageUrl,
});