User constructor

const User({
  1. String? gender,
  2. Name? name,
  3. Location? location,
  4. String? username,
  5. String? password,
  6. String? salt,
  7. String? md5,
  8. String? sha1,
  9. String? sha256,
  10. num? registered,
  11. num? dob,
  12. String? phone,
  13. String? cell,
  14. String? pps,
  15. Picture? picture,
})

Implementation

const User({
  this.gender,
  this.name,
  this.location,
  this.username,
  this.password,
  this.salt,
  this.md5,
  this.sha1,
  this.sha256,
  this.registered,
  this.dob,
  this.phone,
  this.cell,
  this.pps,
  this.picture,
});