toJson method

Map<String, dynamic> toJson()

Implementation

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