toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final description = this.description;
final end = this.end;
final fieldPath = this.fieldPath;
final start = this.start;
return {
'description': ?description,
'end': ?end,
'fieldPath': ?fieldPath,
'start': ?start,
};
}