AchievementRevealResponse.fromJson constructor

AchievementRevealResponse.fromJson(
  1. Map json_
)

Implementation

AchievementRevealResponse.fromJson(core.Map json_)
    : this(
        currentState: json_.containsKey('currentState')
            ? json_['currentState'] as core.String
            : null,
        kind: json_.containsKey('kind') ? json_['kind'] as core.String : null,
      );