ListDataExchangesResponse.fromJson constructor
ListDataExchangesResponse.fromJson(
- Map json_
Implementation
ListDataExchangesResponse.fromJson(core.Map json_)
: this(
dataExchanges: (json_['dataExchanges'] as core.List?)
?.map((value) => DataExchange.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
nextPageToken: json_['nextPageToken'] as core.String?,
);