uninstancedItemPerks property
- @JsonKey(name: 'uninstancedItemPerks')
getter/setter pair
Sometimes, you have items in your inventory that don't have instances, but still have perks (for example: Trials passage cards). This gives you the perk information for uninstanced items. This dictionary is keyed by item hash, which you can use to look up the corresponding item definition. The value is the list of perks states for the item.
Implementation
@JsonKey(name:'uninstancedItemPerks')
Map<String, DestinyItemPerksComponent>? uninstancedItemPerks;