ProductRequest constructor

ProductRequest({
  1. required String name,
  2. required ProductType type,
  3. String? id,
  4. String? description,
  5. String? category,
  6. String? imageUrl,
  7. String? homeUrl,
})

Implementation

ProductRequest({
  required this.name,
  required this.type,
  this.id,
  this.description,
  this.category,
  this.imageUrl,
  this.homeUrl,
});