AchievementResetResponse.fromJson constructor

AchievementResetResponse.fromJson(
  1. Map json_
)

Implementation

AchievementResetResponse.fromJson(core.Map json_)
  : this(
      currentState: json_['currentState'] as core.String?,
      definitionId: json_['definitionId'] as core.String?,
      kind: json_['kind'] as core.String?,
      updateOccurred: json_['updateOccurred'] as core.bool?,
    );