SearchKeywordCount.fromJson constructor

SearchKeywordCount.fromJson(
  1. Map json_
)

Implementation

SearchKeywordCount.fromJson(core.Map json_)
    : this(
        insightsValue: json_.containsKey('insightsValue')
            ? InsightsValue.fromJson(
                json_['insightsValue'] as core.Map<core.String, core.dynamic>)
            : null,
        searchKeyword: json_.containsKey('searchKeyword')
            ? json_['searchKeyword'] as core.String
            : null,
      );