$KeywordAssignedTargetingOptionDetails.fromJson constructor

$KeywordAssignedTargetingOptionDetails.fromJson(
  1. Map json_
)

Implementation

$KeywordAssignedTargetingOptionDetails.fromJson(core.Map json_)
  : this(
      exemptedPolicyNames: (json_['exemptedPolicyNames'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      keyword: json_['keyword'] as core.String?,
      negative: json_['negative'] as core.bool?,
    );