toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bodyRows = this.bodyRows;
  final caption = this.caption;
  final headerRows = this.headerRows;
  return {
    'bodyRows': ?bodyRows,
    'caption': ?caption,
    'headerRows': ?headerRows,
  };
}