GetMultipleApplicationPlayerIdsResponse.fromJson constructor

GetMultipleApplicationPlayerIdsResponse.fromJson(
  1. 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,
      );