Content constructor

Content({
  1. dynamic createdBy,
  2. dynamic createdDate,
  3. dynamic updatedBy,
  4. dynamic updatedDate,
  5. int? locationId,
  6. String? locationName,
  7. int? locationType,
  8. String? locationTypeName,
  9. int? channelId,
  10. String? channelName,
  11. int? status,
  12. bool? softDelete,
  13. dynamic childLocation,
  14. int? childCount,
  15. bool? hasChild,
  16. int? childType,
  17. String? childTypeName,
  18. dynamic parentId,
  19. dynamic parentName,
  20. dynamic parentType,
  21. dynamic parentTypeName,
})

Implementation

Content({
  this.createdBy,
  this.createdDate,
  this.updatedBy,
  this.updatedDate,
  this.locationId,
  this.locationName,
  this.locationType,
  this.locationTypeName,
  this.channelId,
  this.channelName,
  this.status,
  this.softDelete,
  this.childLocation,
  this.childCount,
  this.hasChild,
  this.childType,
  this.childTypeName,
  this.parentId,
  this.parentName,
  this.parentType,
  this.parentTypeName,
});