VideoTargeting.fromJson constructor
VideoTargeting.fromJson(
- Map json_
Implementation
VideoTargeting.fromJson(core.Map json_)
: this(
excludedPositionTypes: (json_['excludedPositionTypes'] as core.List?)
?.map((value) => value as core.String)
.toList(),
targetedPositionTypes: (json_['targetedPositionTypes'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);