toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final interpretationType = this.interpretationType;
  final interpretedQuery = this.interpretedQuery;
  final interpretedQueryActualResultCount =
      this.interpretedQueryActualResultCount;
  final interpretedQueryEstimatedResultCount =
      this.interpretedQueryEstimatedResultCount;
  final reason = this.reason;
  return {
    'interpretationType': ?interpretationType,
    'interpretedQuery': ?interpretedQuery,
    'interpretedQueryActualResultCount': ?interpretedQueryActualResultCount,
    'interpretedQueryEstimatedResultCount':
        ?interpretedQueryEstimatedResultCount,
    'reason': ?reason,
  };
}