$KeywordAssignedTargetingOptionDetails.fromJson constructor

$KeywordAssignedTargetingOptionDetails.fromJson(
  1. Map json_
)

Implementation

$KeywordAssignedTargetingOptionDetails.fromJson(core.Map json_)
    : this(
        keyword: json_.containsKey('keyword')
            ? json_['keyword'] as core.String
            : null,
        negative: json_.containsKey('negative')
            ? json_['negative'] as core.bool
            : null,
      );