MatchIntentRequest constructor

MatchIntentRequest({
  1. String? session,
  2. QueryParameters? queryParams,
  3. QueryInput? queryInput,
})

Implementation

factory MatchIntentRequest({
  $core.String? session,
  QueryParameters? queryParams,
  QueryInput? queryInput,
}) {
  final _result = create();
  if (session != null) {
    _result.session = session;
  }
  if (queryParams != null) {
    _result.queryParams = queryParams;
  }
  if (queryInput != null) {
    _result.queryInput = queryInput;
  }
  return _result;
}