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