FeatureRequestComment constructor

const FeatureRequestComment({
  1. required String id,
  2. required String featureRequestId,
  3. String? authorName,
  4. String? authorEmail,
  5. String? authorAvatarUrl,
  6. String? authorClerkId,
  7. required String body,
  8. String? parentId,
  9. String? replyToClerkId,
  10. String? replyToAuthorName,
  11. bool isHidden = false,
  12. required String createdAt,
})

Implementation

const FeatureRequestComment({
  required this.id,
  required this.featureRequestId,
  this.authorName,
  this.authorEmail,
  this.authorAvatarUrl,
  this.authorClerkId,
  required this.body,
  this.parentId,
  this.replyToClerkId,
  this.replyToAuthorName,
  this.isHidden = false,
  required this.createdAt,
});