User constructor

User(
  1. String username,
  2. String? name,
  3. bool private,
  4. bool vip,
  5. bool vipEp,
  6. Ids ids,
  7. String? location,
  8. String? about,
  9. String? gender,
  10. int? age,
  11. Images? images,
  12. String? joinedAt,
  13. bool? vipOG,
  14. int? vipYears,
  15. String? vipCoverImage,
)

Implementation

User(
    this.username,
    this.name,
    this.private,
    this.vip,
    this.vipEp,
    this.ids,
    this.location,
    this.about,
    this.gender,
    this.age,
    this.images,
    this.joinedAt,
    this.vipOG,
    this.vipYears,
    this.vipCoverImage);