InlineCommentModel constructor

InlineCommentModel({
  1. String? id,
  2. String? status,
  3. String? title,
  4. String? blogPostId,
  5. String? pageId,
  6. String? 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});