toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final creationDate = this.creationDate;
final destinationStatuses = this.destinationStatuses;
final googleExpirationDate = this.googleExpirationDate;
final itemLevelIssues = this.itemLevelIssues;
final kind = this.kind;
final lastUpdateDate = this.lastUpdateDate;
final link = this.link;
final productId = this.productId;
final title = this.title;
return {
'creationDate': ?creationDate,
'destinationStatuses': ?destinationStatuses,
'googleExpirationDate': ?googleExpirationDate,
'itemLevelIssues': ?itemLevelIssues,
'kind': ?kind,
'lastUpdateDate': ?lastUpdateDate,
'link': ?link,
'productId': ?productId,
'title': ?title,
};
}