AchievementUnlockResponse.fromJson constructor

AchievementUnlockResponse.fromJson(
  1. Map json_
)

Implementation

AchievementUnlockResponse.fromJson(core.Map json_)
  : this(
      kind: json_['kind'] as core.String?,
      newlyUnlocked: json_['newlyUnlocked'] as core.bool?,
    );