DestinyVendorCategory class

Information about the category and items currently sold in that category.

Annotations
  • @JsonSerializable()

Constructors

DestinyVendorCategory()
DestinyVendorCategory.fromJson(Map<String, dynamic> json)
factory

Properties

displayCategoryIndex int?
An index into the DestinyVendorDefinition.displayCategories property, so you can grab the display data for this category.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
itemIndexes List<int>?
An ordered list of indexes into items being sold in this category (DestinyVendorDefinition.itemList) which will contain more information about the items being sold themselves. Can also be used to index into DestinyVendorSaleItemComponent data, if you asked for that data to be returned.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

asyncToJson() Future<Map<String, dynamic>>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

asyncFromJson(Map<String, dynamic> json) Future<DestinyVendorCategory>