Passengers constructor
Passengers({ - String? id,
- bool? isActive,
- bool? isConfirmed,
- String? subscriberId,
- String? firstName,
- String? lastName,
- String? phone,
- String? passportNo,
- String? gender,
- String? passportIssuingCountry,
- String? passportExpiry,
- String? nationality,
- String? dob,
- String? type,
- String? createdAt,
- 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});