$AppAssignedTargetingOptionDetails.fromJson constructor

$AppAssignedTargetingOptionDetails.fromJson(
  1. Map json_
)

Implementation

$AppAssignedTargetingOptionDetails.fromJson(core.Map json_)
    : this(
        appId:
            json_.containsKey('appId') ? json_['appId'] as core.String : null,
        appPlatform: json_.containsKey('appPlatform')
            ? json_['appPlatform'] as core.String
            : null,
        displayName: json_.containsKey('displayName')
            ? json_['displayName'] as core.String
            : null,
        negative: json_.containsKey('negative')
            ? json_['negative'] as core.bool
            : null,
      );