SIQArticle constructor

SIQArticle(
  1. String id,
  2. String name,
  3. String categoryId,
  4. String categoryName,
  5. int viewCount,
  6. int likeCount,
  7. int dislikeCount,
  8. DateTime? createdTime,
  9. DateTime? modifiedTime,
)

Implementation

SIQArticle(
    this.id,
    this.name,
    this.categoryId,
    this.categoryName,
    this.viewCount,
    this.likeCount,
    this.dislikeCount,
    this.createdTime,
    this.modifiedTime);