UpdateProduct constructor

UpdateProduct({
  1. String? name,
  2. String? slug,
  3. String? description,
  4. List<String> features = const [],
  5. UpdateProductStatusEnum? status,
})

Returns a new UpdateProduct instance.

Implementation

UpdateProduct({
  this.name,
  this.slug,
  this.description,
  this.features = const [],
  this.status,
});