UCategoryResponse constructor

UCategoryResponse({
  1. required String id,
  2. required DateTime createdAt,
  3. required UCategoryJson jsonData,
  4. required List<int> tags,
  5. required String title,
  6. required List<String> adminUserIds,
  7. String? code,
  8. String? parentId,
  9. int? order,
  10. List<UCategoryResponse>? children,
  11. List<UMediaResponse>? media,
  12. UUserResponse? creator,
  13. String? creatorId,
})

Implementation

UCategoryResponse({
  required this.id,
  required this.createdAt,
  required this.jsonData,
  required this.tags,
  required this.title,
  required this.adminUserIds,
  this.code,
  this.parentId,
  this.order,
  this.children,
  this.media,
  this.creator,
  this.creatorId,
});