toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final endColumn = this.endColumn;
final endLine = this.endLine;
final procedureId = this.procedureId;
final startColumn = this.startColumn;
final startLine = this.startLine;
final text = this.text;
return {
'endColumn': ?endColumn,
'endLine': ?endLine,
'procedureId': ?procedureId,
'startColumn': ?startColumn,
'startLine': ?startLine,
'text': ?text,
};
}