Novel constructor

Novel(
  1. int id,
  2. String title,
  3. String caption,
  4. int restrict,
  5. int xRestrict,
  6. bool isOriginal,
  7. ImageUrls imageUrls,
  8. String createDate,
  9. List<Tag> tags,
  10. int pageCount,
  11. int textLength,
  12. User user,
  13. Series series,
  14. int totalBookmarks,
  15. bool isBookmarked,
  16. int totalView,
  17. bool visible,
  18. int totalComments,
  19. bool isMuted,
  20. bool isMyPixivOnly,
  21. bool isXRestricted,
)

Implementation

Novel(
  this.id,
  this.title,
  this.caption,
  this.restrict,
  this.xRestrict,
  this.isOriginal,
  this.imageUrls,
  this.createDate,
  this.tags,
  this.pageCount,
  this.textLength,
  this.user,
  this.series,
  this.totalBookmarks,
  this.isBookmarked,
  this.totalView,
  this.visible,
  this.totalComments,
  this.isMuted,
  this.isMyPixivOnly,
  this.isXRestricted,
);