SpeechAdaptation_AdaptationPhraseSet constructor

SpeechAdaptation_AdaptationPhraseSet({
  1. String? phraseSet,
  2. PhraseSet? inlinePhraseSet,
})

Implementation

factory SpeechAdaptation_AdaptationPhraseSet({
  $core.String? phraseSet,
  PhraseSet? inlinePhraseSet,
}) {
  final $result = create();
  if (phraseSet != null) {
    $result.phraseSet = phraseSet;
  }
  if (inlinePhraseSet != null) {
    $result.inlinePhraseSet = inlinePhraseSet;
  }
  return $result;
}