toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final categories = this.categories;
final description = this.description;
final kbArticleIds = this.kbArticleIds;
final lastDeploymentChangeTime = this.lastDeploymentChangeTime;
final moreInfoUrls = this.moreInfoUrls;
final revisionNumber = this.revisionNumber;
final supportUrl = this.supportUrl;
final title = this.title;
final updateId = this.updateId;
return {
'categories': ?categories,
'description': ?description,
'kbArticleIds': ?kbArticleIds,
'lastDeploymentChangeTime': ?lastDeploymentChangeTime,
'moreInfoUrls': ?moreInfoUrls,
'revisionNumber': ?revisionNumber,
'supportUrl': ?supportUrl,
'title': ?title,
'updateId': ?updateId,
};
}