$ChannelAssignedTargetingOptionDetails.fromJson constructor

$ChannelAssignedTargetingOptionDetails.fromJson(
  1. Map json_
)

Implementation

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