UserProfile constructor

UserProfile(
  1. String? webpage,
  2. String gender,
  3. String birth,
  4. String birthDay,
  5. int birthYear,
  6. String region,
  7. int addressId,
  8. String countryCode,
  9. String job,
  10. int jobId,
  11. int totalFollowUsers,
  12. int totalMyPixivUsers,
  13. int totalIllusts,
  14. int totalManga,
  15. int totalNovels,
  16. int totalIllustBookmarksPublic,
  17. int totalIllustSeries,
  18. int totalNovelSeries,
  19. String? backgroundImageUrl,
  20. String? twitterAccount,
  21. String? twitterUrl,
  22. String? pawooUrl,
  23. bool isPremium,
  24. bool isUsingCustomProfileImage,
)

Implementation

UserProfile(
  this.webpage,
  this.gender,
  this.birth,
  this.birthDay,
  this.birthYear,
  this.region,
  this.addressId,
  this.countryCode,
  this.job,
  this.jobId,
  this.totalFollowUsers,
  this.totalMyPixivUsers,
  this.totalIllusts,
  this.totalManga,
  this.totalNovels,
  this.totalIllustBookmarksPublic,
  this.totalIllustSeries,
  this.totalNovelSeries,
  this.backgroundImageUrl,
  this.twitterAccount,
  this.twitterUrl,
  this.pawooUrl,
  this.isPremium,
  this.isUsingCustomProfileImage,
);