GoogleAdsSearchads360V23CommonLineupAttributeMetadataSampleChannel.fromJson constructor
GoogleAdsSearchads360V23CommonLineupAttributeMetadataSampleChannel.fromJson(
- Map json_
Implementation
GoogleAdsSearchads360V23CommonLineupAttributeMetadataSampleChannel.fromJson(
core.Map json_,
) : this(
displayName: json_['displayName'] as core.String?,
youtubeChannel: json_.containsKey('youtubeChannel')
? GoogleAdsSearchads360V23CommonYouTubeChannelInfo.fromJson(
json_['youtubeChannel'] as core.Map<core.String, core.dynamic>,
)
: null,
youtubeChannelMetadata: json_.containsKey('youtubeChannelMetadata')
? GoogleAdsSearchads360V23CommonYouTubeChannelAttributeMetadata.fromJson(
json_['youtubeChannelMetadata']
as core.Map<core.String, core.dynamic>,
)
: null,
);