PlayerAchievement.fromJson constructor

PlayerAchievement.fromJson(
  1. Map json_
)

Implementation

PlayerAchievement.fromJson(core.Map json_)
    : this(
        achievementState: json_['achievementState'] as core.String?,
        currentSteps: json_['currentSteps'] as core.int?,
        experiencePoints: json_['experiencePoints'] as core.String?,
        formattedCurrentStepsString:
            json_['formattedCurrentStepsString'] as core.String?,
        id: json_['id'] as core.String?,
        kind: json_['kind'] as core.String?,
        lastUpdatedTimestamp: json_['lastUpdatedTimestamp'] as core.String?,
      );