User constructor

User(
  1. int id,
  2. int runetId,
  3. String email,
  4. String firstName,
  5. String lastName,
  6. String fatherName,
  7. DateTime birthday,
  8. String photo,
)

Implementation

User(
  this.id,
  this.runetId,
  this.email,
  this.firstName,
  this.lastName,
  this.fatherName,
    this.birthday,
    this.photo,
);