AchievementUpdateResponse.fromJson constructor

AchievementUpdateResponse.fromJson(
  1. Map json_
)

Implementation

AchievementUpdateResponse.fromJson(core.Map json_)
  : this(
      achievementId: json_['achievementId'] as core.String?,
      currentState: json_['currentState'] as core.String?,
      currentSteps: json_['currentSteps'] as core.int?,
      kind: json_['kind'] as core.String?,
      newlyUnlocked: json_['newlyUnlocked'] as core.bool?,
      updateOccurred: json_['updateOccurred'] as core.bool?,
    );