CommentDTO constructor
CommentDTO({
- List<
String> ? expands, - SelfLinkDTO? links,
- PagedDTOAttachmentDTO? attachments,
- UserDTO? author,
- String? body,
- DateDTO? created,
- String? id,
- bool? public,
- RenderedValueDTO? renderedBody,
Implementation
CommentDTO(
{List<String>? expands,
this.links,
this.attachments,
this.author,
this.body,
this.created,
this.id,
bool? public,
this.renderedBody})
: expands = expands ?? [],
public = public ?? false;