toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final maxRows = this.maxRows;
  final query = this.query;
  return {
    'MaxRows': maxRows,
    'Query': query,
  };
}