CountryTargeting.fromJson constructor
CountryTargeting.fromJson(
- Map json_
Implementation
CountryTargeting.fromJson(core.Map json_)
: this(
countries: (json_['countries'] as core.List?)
?.map((value) => value as core.String)
.toList(),
includeRestOfWorld: json_['includeRestOfWorld'] as core.bool?,
);