$YoutubeVideoAssignedTargetingOptionDetails.fromJson constructor

$YoutubeVideoAssignedTargetingOptionDetails.fromJson(
  1. Map json_
)

Implementation

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