PlayerScoreResetAllResponse.fromJson constructor
PlayerScoreResetAllResponse.fromJson(
- Map json_
Implementation
PlayerScoreResetAllResponse.fromJson(core.Map json_)
: this(
kind: json_['kind'] as core.String?,
results: (json_['results'] as core.List?)
?.map((value) => PlayerScoreResetResponse.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);