FirstPartyMobileApplicationTargeting.fromJson constructor

FirstPartyMobileApplicationTargeting.fromJson(
  1. Map json_
)

Implementation

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