UserCountriesTargeting.fromJson constructor

UserCountriesTargeting.fromJson(
  1. Map json_
)

Implementation

UserCountriesTargeting.fromJson(core.Map json_)
  : this(
      countryCodes:
          (json_['countryCodes'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      exclude: json_['exclude'] as core.bool?,
    );