UCommentResponse constructor
UCommentResponse({
- required String id,
- required DateTime createdAt,
- required UCommentJson jsonData,
- required List<
int> tags, - required double score,
- required String description,
- required String userId,
- required List<
String> adminUserIds, - String? parentId,
- UUserResponse? user,
- UUserResponse? creator,
- String? creatorId,
- String? productId,
- String? blogId,
- List<
UCommentResponse> ? children, - List<
UMediaResponse> ? media,
Implementation
UCommentResponse({
required this.id,
required this.createdAt,
required this.jsonData,
required this.tags,
required this.score,
required this.description,
required this.userId,
required this.adminUserIds,
this.parentId,
this.user,
this.creator,
this.creatorId,
this.productId,
this.blogId,
this.children,
this.media,
});