toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final cols = this.cols;
  final data = this.data;
  final rows = this.rows;
  final type = this.type;
  return {'cols': ?cols, 'data': ?data, 'rows': ?rows, 'type': ?type};
}