CommentRequest constructor

CommentRequest({
  1. CommentType? entityType,
  2. int? entityId,
  3. String? body,
})

Implementation

CommentRequest({
  this.entityType,
  this.entityId,
  this.body,
});