BookingModel constructor
BookingModel({ - String? id,
- required String uid,
- String? name,
- DateTime? requestDate,
- String? route,
- int? numPassengers,
- String? flightClass,
- DateTime? departureDate,
- bool isCorporate = false,
- String? assignee,
- String? status,
- String? plan,
- 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,
});