toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final listProperties = this.listProperties;
final suggestedDeletionIds = this.suggestedDeletionIds;
final suggestedInsertionId = this.suggestedInsertionId;
final suggestedListPropertiesChanges = this.suggestedListPropertiesChanges;
return {
'listProperties': ?listProperties,
'suggestedDeletionIds': ?suggestedDeletionIds,
'suggestedInsertionId': ?suggestedInsertionId,
'suggestedListPropertiesChanges': ?suggestedListPropertiesChanges,
};
}