copyWith method

BlogPostInlineCommentModel copyWith({
  1. String? id,
  2. String? status,
  3. String? title,
  4. String? blogPostId,
  5. Version? version,
  6. BodyBulk? body,
  7. String? resolutionStatus,
  8. InlineCommentProperties? properties,
  9. CommentLinks? links,
})

Implementation

BlogPostInlineCommentModel copyWith(
    {String? id,
    String? status,
    String? title,
    String? blogPostId,
    Version? version,
    BodyBulk? body,
    String? resolutionStatus,
    InlineCommentProperties? properties,
    CommentLinks? links}) {
  return BlogPostInlineCommentModel(
    id: id ?? this.id,
    status: status ?? this.status,
    title: title ?? this.title,
    blogPostId: blogPostId ?? this.blogPostId,
    version: version ?? this.version,
    body: body ?? this.body,
    resolutionStatus: resolutionStatus ?? this.resolutionStatus,
    properties: properties ?? this.properties,
    links: links ?? this.links,
  );
}