toJson method
Returns a JSON presentation of the object.
Implementation
@override
Map<String, Object> toJson() {
var result = <String, Object>{};
result['file'] = file;
result['selectionOffset'] = selectionOffset;
result['selectionLength'] = selectionLength;
var lineLength = this.lineLength;
if (lineLength != null) {
result['lineLength'] = lineLength;
}
return result;
}