toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final editorSuggestions = this.editorSuggestions;
final processingErrors = this.processingErrors;
final processingHints = this.processingHints;
final processingWarnings = this.processingWarnings;
final tagSuggestions = this.tagSuggestions;
return {
'editorSuggestions': ?editorSuggestions,
'processingErrors': ?processingErrors,
'processingHints': ?processingHints,
'processingWarnings': ?processingWarnings,
'tagSuggestions': ?tagSuggestions,
};
}