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