PassengerType constructor

PassengerType({
  1. String? type,
  2. String? description,
  3. String? displayName,
  4. int? displayOrder,
})

Implementation

PassengerType({
  this.type,
  this.description,
  this.displayName,
  this.displayOrder,
});