GamesAchievementIncrement.fromJson constructor

GamesAchievementIncrement.fromJson(
  1. Map json_
)

Implementation

GamesAchievementIncrement.fromJson(core.Map json_)
  : this(
      kind: json_['kind'] as core.String?,
      requestId: json_['requestId'] as core.String?,
      steps: json_['steps'] as core.int?,
    );