FulfillIntentRequest constructor

FulfillIntentRequest({
  1. MatchIntentRequest? matchIntentRequest,
  2. Match? match,
  3. OutputAudioConfig? outputAudioConfig,
})

Implementation

factory FulfillIntentRequest({
  MatchIntentRequest? matchIntentRequest,
  Match? match,
  $23.OutputAudioConfig? outputAudioConfig,
}) {
  final _result = create();
  if (matchIntentRequest != null) {
    _result.matchIntentRequest = matchIntentRequest;
  }
  if (match != null) {
    _result.match = match;
  }
  if (outputAudioConfig != null) {
    _result.outputAudioConfig = outputAudioConfig;
  }
  return _result;
}