ProductBatch constructor

ProductBatch({
  1. List<Create>? create,
  2. List<Create>? update,
  3. List<Create>? delete,
})

Implementation

ProductBatch({
  this.create,
  this.update,
  this.delete,
});