CommentCreateDTO constructor

CommentCreateDTO({
  1. String? body,
  2. bool? public,
})

Implementation

CommentCreateDTO({this.body, bool? public}) : public = public ?? false;