$Channel00.fromJson constructor
$Channel00.fromJson(
- Map json_
Implementation
$Channel00.fromJson(core.Map json_)
: this(
advertiserId: json_.containsKey('advertiserId')
? json_['advertiserId'] as core.String
: null,
channelId: json_.containsKey('channelId')
? json_['channelId'] as core.String
: null,
displayName: json_.containsKey('displayName')
? json_['displayName'] as core.String
: null,
name: json_.containsKey('name') ? json_['name'] as core.String : null,
negativelyTargetedLineItemCount:
json_.containsKey('negativelyTargetedLineItemCount')
? json_['negativelyTargetedLineItemCount'] as core.String
: null,
partnerId: json_.containsKey('partnerId')
? json_['partnerId'] as core.String
: null,
positivelyTargetedLineItemCount:
json_.containsKey('positivelyTargetedLineItemCount')
? json_['positivelyTargetedLineItemCount'] as core.String
: null,
);