UserModel constructor
UserModel({ - String? uid,
- String? email,
- String? firstName,
- String? lastName,
- String? middleName,
- String? companyName,
- String? phone,
- String? addressLine1,
- String? addressLine2,
- String? city,
- String? countryCode,
- String? country,
- String? residentCountry,
- String? password,
- String? role,
- bool? isActive,
- String? createdAt,
- String? updatedAt,
- bool? hasDefaultPassword,
- String? photo,
- int? flightSearchCreditAdded,
- int? flightSearchCreditUsed,
})
Implementation
UserModel({
this.uid,
this.email,
this.firstName,
this.lastName,
this.middleName,
this.companyName,
this.phone,
this.addressLine1,
this.addressLine2,
this.city,
this.countryCode,
this.country,
this.residentCountry,
this.password,
this.role,
this.isActive,
this.createdAt,
this.updatedAt,
this.hasDefaultPassword,
this.photo,
this.flightSearchCreditAdded,
this.flightSearchCreditUsed,
});