DestinyChecklistEntryDefinition class

The properties of an individual checklist item. Note that almost everything is optional: it is highly variable what kind of data we'll actually be able to return: at times we may have no other relationships to entities at all. Whatever UI you build, do it with the knowledge that any given entry might not actually be able to be associated with some other Destiny entity.

Annotations
  • @JsonSerializable()

Properties

activityHash int?
getter/setter pair
bubbleHash int?
Note that a Bubble's hash doesn't uniquely identify a "top level" entity in Destiny. Only the combination of location and bubble can uniquely identify a place in the world of Destiny: so if bubbleHash is populated, locationHash must too be populated for it to have any meaning. You can use this property if it is populated to look up the DestinyLocationDefinition's associated .locationReleases[].activityBubbleName property.
getter/setter pair
destinationHash int?
getter/setter pair
displayProperties DestinyDisplayPropertiesDefinition?
Even if no other associations exist, we will give you something for display properties. In cases where we have no associated entities, it may be as simple as a numerical identifier.
getter/setter pair
hash int?
The identifier for this Checklist entry. Guaranteed unique only within this Checklist Definition, and not globally/for all checklists.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
itemHash int?
getter/setter pair
locationHash int?
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
scope DestinyScope?
The scope at which this specific entry can be computed.
getter/setter pair
vendorHash int?
getter/setter pair
vendorInteractionIndex int?
getter/setter pair

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<DestinyChecklistEntryDefinition>