ItemModel constructor

ItemModel(
  1. String name,
  2. String item_code,
  3. String item_name,
  4. String description,
  5. String stock_uom,
  6. double opening_stock,
)

Implementation

ItemModel(
  this.name,
  this.item_code,
  this.item_name,
  this.description,
  this.stock_uom,
  this.opening_stock,
);