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