InventoryItemSchema constructor

InventoryItemSchema({
  1. required List<InventoryItemAttribute> attributes,
  2. required String typeName,
  3. String? displayName,
  4. String? version,
})

Implementation

InventoryItemSchema({
  required this.attributes,
  required this.typeName,
  this.displayName,
  this.version,
});