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<core.String>((value) => value as core.String)
                .toList()
            : null,
        targetedAppIds: _json.containsKey('targetedAppIds')
            ? (_json['targetedAppIds'] as core.List)
                .map<core.String>((value) => value as core.String)
                .toList()
            : null,
      );