FirstPartyMobileApplicationTargeting.fromJson constructor

FirstPartyMobileApplicationTargeting.fromJson(
  1. Map json_
)

Implementation

FirstPartyMobileApplicationTargeting.fromJson(core.Map json_)
  : this(
      excludedAppIds:
          (json_['excludedAppIds'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      targetedAppIds:
          (json_['targetedAppIds'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
    );