GetMultipleApplicationPlayerIdsResponse.fromJson constructor
GetMultipleApplicationPlayerIdsResponse.fromJson(
- Map json_
Implementation
GetMultipleApplicationPlayerIdsResponse.fromJson(core.Map json_)
: this(
playerIds: json_.containsKey('playerIds')
? (json_['playerIds'] as core.List)
.map((value) => ApplicationPlayerId.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);