FirstPartyAndPartnerAudienceGroup.fromJson constructor

FirstPartyAndPartnerAudienceGroup.fromJson(
  1. Map json_
)

Implementation

FirstPartyAndPartnerAudienceGroup.fromJson(core.Map json_)
    : this(
        settings: (json_['settings'] as core.List?)
            ?.map((value) =>
                FirstPartyAndPartnerAudienceTargetingSetting.fromJson(
                    value as core.Map<core.String, core.dynamic>))
            .toList(),
      );