DestinyMilestoneActivityCompletionStatus class
Represents this player's personal completion status for the Activity under a Milestone, if the activity has trackable completion and progress information. (most activities won't, or the concept won't apply. For instance, it makes sense to talk about a tier of a raid as being Completed or having progress, but it doesn't make sense to talk about a Crucible Playlist in those terms.
- Annotations
-
- @JsonSerializable()
Constructors
- DestinyMilestoneActivityCompletionStatus()
-
DestinyMilestoneActivityCompletionStatus.fromJson(Map<
String, dynamic> json) -
factory
Properties
- completed ↔ bool?
-
If the activity has been "completed", that information will be returned here.
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setterinherited
-
phases
↔ List<
DestinyMilestoneActivityPhase> ? -
If the Activity has discrete "phases" that we can track, that info will be here. Otherwise, this value will be NULL. Note that this is a list and not a dictionary: the order implies the ascending order of phases or progression in this activity.
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<DestinyMilestoneActivityCompletionStatus>