toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final attribute = this.attribute;
final dimension = this.dimension;
final displayInfo = this.displayInfo;
final displayName = this.displayName;
final knowledgeGraphAttributeMetadata =
this.knowledgeGraphAttributeMetadata;
final lineupAttributeMetadata = this.lineupAttributeMetadata;
final locationAttributeMetadata = this.locationAttributeMetadata;
final potentialYoutubeReach = this.potentialYoutubeReach;
final subscriberShare = this.subscriberShare;
final userInterestAttributeMetadata = this.userInterestAttributeMetadata;
final userListAttributeMetadata = this.userListAttributeMetadata;
final viewerShare = this.viewerShare;
final youtubeChannelMetadata = this.youtubeChannelMetadata;
final youtubeVideoMetadata = this.youtubeVideoMetadata;
return {
'attribute': ?attribute,
'dimension': ?dimension,
'displayInfo': ?displayInfo,
'displayName': ?displayName,
'knowledgeGraphAttributeMetadata': ?knowledgeGraphAttributeMetadata,
'lineupAttributeMetadata': ?lineupAttributeMetadata,
'locationAttributeMetadata': ?locationAttributeMetadata,
'potentialYoutubeReach': ?potentialYoutubeReach,
'subscriberShare': ?subscriberShare,
'userInterestAttributeMetadata': ?userInterestAttributeMetadata,
'userListAttributeMetadata': ?userListAttributeMetadata,
'viewerShare': ?viewerShare,
'youtubeChannelMetadata': ?youtubeChannelMetadata,
'youtubeVideoMetadata': ?youtubeVideoMetadata,
};
}