UserRetrival constructor

UserRetrival({
  1. int? id,
  2. String? email,
  3. String? firstName,
  4. String? lastName,
  5. String? phoneNumber,
  6. String? gender,
  7. String? skypeAddress,
  8. DateTime? dateOfBirth,
})

Returns a new UserRetrival instance.

Implementation

UserRetrival({
  this.id,
  this.email,
  this.firstName,
  this.lastName,
  this.phoneNumber,
  this.gender,
  this.skypeAddress,
  this.dateOfBirth,
});