toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final columns = this.columns;
final endOfSegmentLocation = this.endOfSegmentLocation;
final location = this.location;
final rows = this.rows;
return {
'columns': ?columns,
'endOfSegmentLocation': ?endOfSegmentLocation,
'location': ?location,
'rows': ?rows,
};
}