Data constructor

Data({
  1. String? carouselId,
  2. String? orgId,
  3. String? createdAt,
  4. String? updatedAt,
  5. String? clientId,
  6. List<CarouselContent>? carouselContent,
})

Implementation

Data({
  this.carouselId,
  this.orgId,
  this.createdAt,
  this.updatedAt,
  this.clientId,
  this.carouselContent,
});