Inventory.fromMap constructor
Implementation
factory Inventory.fromMap(Map<String, dynamic> json) => Inventory(
sku: json["sku"],
barcode: json["barcode"],
quantity: json["quantity"],
trackQuantity: json["track_quantity"],
reorderPoint: json["reorder_point"],
);