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