InlineCommentModel constructor

InlineCommentModel({
  1. dynamic id,
  2. String? status,
  3. String? title,
  4. dynamic blogPostId,
  5. dynamic pageId,
  6. dynamic parentCommentId,
  7. Version? version,
  8. BodySingle? body,
  9. String? resolutionLastModifierId,
  10. DateTime? resolutionLastModifiedAt,
  11. String? resolutionStatus,
  12. InlineCommentProperties? properties,
  13. CommentLinks? links,
})

Implementation

InlineCommentModel(
    {this.id,
    this.status,
    this.title,
    this.blogPostId,
    this.pageId,
    this.parentCommentId,
    this.version,
    this.body,
    this.resolutionLastModifierId,
    this.resolutionLastModifiedAt,
    this.resolutionStatus,
    this.properties,
    this.links});