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