Passengers constructor

Passengers({
  1. String? id,
  2. bool? isActive,
  3. bool? isConfirmed,
  4. String? subscriberId,
  5. String? firstName,
  6. String? lastName,
  7. String? phone,
  8. String? passportNo,
  9. String? gender,
  10. String? passportIssuingCountry,
  11. String? passportExpiry,
  12. String? nationality,
  13. String? dob,
  14. String? type,
  15. String? createdAt,
  16. String? updatedAt,
})

Implementation

Passengers(
    {this.id,
    this.isActive,
    this.isConfirmed,
    this.subscriberId,
    this.firstName,
    this.lastName,
    this.phone,
    this.passportNo,
    this.gender,
    this.passportIssuingCountry,
    this.passportExpiry,
    this.nationality,
    this.dob,
    this.type,
    this.createdAt,
    this.updatedAt});