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