toJson method

Map<String, dynamic> toJson()

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,
  };
}