QueryInput constructor
QueryInput({
- InputAudioConfig? audioConfig,
- TextInput? text,
- EventInput? event,
Implementation
factory QueryInput({
$19.InputAudioConfig? audioConfig,
TextInput? text,
EventInput? event,
}) {
final _result = create();
if (audioConfig != null) {
_result.audioConfig = audioConfig;
}
if (text != null) {
_result.text = text;
}
if (event != null) {
_result.event = event;
}
return _result;
}