Passengers constructor

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

Implementation

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