FeatureRequestComment constructor
const
FeatureRequestComment({ - required String id,
- required String featureRequestId,
- String? authorName,
- String? authorEmail,
- String? authorAvatarUrl,
- String? authorClerkId,
- required String body,
- String? parentId,
- String? replyToClerkId,
- String? replyToAuthorName,
- bool isHidden = false,
- 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,
});