User constructor

User({
  1. String? status,
  2. Map<String, dynamic>? name,
  3. String? username,
  4. String? password,
  5. List? emails,
  6. String? phoneNumber,
  7. Map<String, dynamic>? location,
  8. String? website,
  9. String? domain,
  10. Map<String, dynamic>? job,
  11. Map<String, dynamic>? creditCard,
  12. String? uuid,
  13. String? objectId,
})

Implementation

User({
  this.status,
  this.name,
  this.username,
  this.password,
  this.emails,
  this.phoneNumber,
  this.location,
  this.website,
  this.domain,
  this.job,
  this.creditCard,
  this.uuid,
  this.objectId,
});