toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dateElementProperties = this.dateElementProperties;
final dateId = this.dateId;
final suggestedDateElementPropertiesChanges =
this.suggestedDateElementPropertiesChanges;
final suggestedDeletionIds = this.suggestedDeletionIds;
final suggestedInsertionIds = this.suggestedInsertionIds;
final suggestedTextStyleChanges = this.suggestedTextStyleChanges;
final textStyle = this.textStyle;
return {
'dateElementProperties': ?dateElementProperties,
'dateId': ?dateId,
'suggestedDateElementPropertiesChanges':
?suggestedDateElementPropertiesChanges,
'suggestedDeletionIds': ?suggestedDeletionIds,
'suggestedInsertionIds': ?suggestedInsertionIds,
'suggestedTextStyleChanges': ?suggestedTextStyleChanges,
'textStyle': ?textStyle,
};
}