FulfillIntentRequest constructor
FulfillIntentRequest({
- MatchIntentRequest? matchIntentRequest,
- Match? match,
- 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;
}