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