copyWith method
Implementation
CreateFooterCommentModel copyWith(
{String? blogPostId,
String? pageId,
String? parentCommentId,
dynamic body}) {
return CreateFooterCommentModel(
blogPostId: blogPostId ?? this.blogPostId,
pageId: pageId ?? this.pageId,
parentCommentId: parentCommentId ?? this.parentCommentId,
body: body ?? this.body,
);
}