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