toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final maxRows = this.maxRows;
  final query = this.query;
  final queryParameters = this.queryParameters;
  final timeout = this.timeout;
  return {
    'maxRows': ?maxRows,
    'query': ?query,
    'queryParameters': ?queryParameters,
    'timeout': ?timeout,
  };
}