ItemItem constructor Null safety

ItemItem(
  1. {int? id,
  2. String? name,
  3. String? description,
  4. String? imageUrl,
  5. String? videoUrl,
  6. String? thumbImageUrl,
  7. int? listType,
  8. Product? product,
  9. int? itemSource,
  10. bool? hasFilter}
)

Implementation

ItemItem({
  this.id,
  this.name,
  this.description,
  this.imageUrl,
  this.videoUrl,
  this.thumbImageUrl,
  this.listType,
  this.product,
  this.itemSource,
  this.hasFilter,
});