InventoryItem constructor

InventoryItem({
  1. required String captureTime,
  2. required String schemaVersion,
  3. required String typeName,
  4. List<Map<String, String>>? content,
  5. String? contentHash,
  6. Map<String, String>? context,
})

Implementation

InventoryItem({
  required this.captureTime,
  required this.schemaVersion,
  required this.typeName,
  this.content,
  this.contentHash,
  this.context,
});