toJson method

Map<String, dynamic> toJson()

Implementation

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