QueryParameters constructor

QueryParameters({
  1. String? timeZone,
  2. LatLng? geoLocation,
  3. List<Context>? contexts,
  4. bool? resetContexts,
  5. List<SessionEntityType>? sessionEntityTypes,
  6. Map<String, dynamic>? payload,
  7. SentimentAnalysisRequestConfig? sentimentAnalysisRequestConfig,
})

Represents the parameters of the conversational query.

Implementation

QueryParameters({
  this.timeZone,
  this.geoLocation,
  this.contexts,
  this.resetContexts,
  this.sessionEntityTypes,
  this.payload,
  this.sentimentAnalysisRequestConfig,
});