DestinyManifest class

DestinyManifest is the external-facing contract for just the properties needed by those calling the Destiny Platform.

Annotations
  • @JsonSerializable()

Constructors

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

Properties

hashCode int
The hash code for this object.
no setterinherited
iconImagePyramidInfo List<ImagePyramidEntry>?
Information about the "Image Pyramid" for Destiny icons. Where possible, we create smaller versions of Destiny icons. These are found as subfolders under the location of the "original/full size" Destiny images, with the same file name and extension as the original image itself. (this lets us avoid sending largely redundant path info with every entity, at the expense of the smaller versions of the image being less discoverable)
getter/setter pair
jsonWorldComponentContentPaths Map<String, Map<String, String>>?
This points to the generated JSON that contains all the Definitions. Each key is a locale. The value is a dictionary, where the key is a definition type by name, and the value is the path to the file for that definition. WARNING: This is unsafe and subject to change - do not depend on data in these files staying around long-term.
getter/setter pair
jsonWorldContentPaths Map<String, String>?
This points to the generated JSON that contains all the Definitions. Each key is a locale. The value is a path to the aggregated world definitions (warning: large file!)
getter/setter pair
mobileAssetContentPath String?
getter/setter pair
mobileClanBannerDatabasePath String?
getter/setter pair
mobileGearAssetDataBases List<GearAssetDataBaseDefinition>?
getter/setter pair
mobileGearCdn Map<String, String>?
getter/setter pair
mobileWorldContentPaths Map<String, String>?
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
version String?
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<DestinyManifest>