Product constructor

Product({
  1. required String glb,
  2. required String usdz,
  3. required bool isActive,
  4. required String name,
  5. required String placement,
  6. required bool resize,
  7. required String pdpUrl,
  8. required String sound,
  9. String? modelId,
  10. String? manufacturerId,
})

Implementation

Product({
  required this.glb,
  required this.usdz,
  required this.isActive,
  required this.name,
  required this.placement,
  required this.resize,
  required this.pdpUrl,
  required this.sound,
  this.modelId,
  this.manufacturerId,
});