reset method

void reset()

Implementation

void reset() {
  if (!available) {
    throw Exception("Model not opened yet. wait one second and try again.");
  }

  // Reset state
  int status = ailiaSpeech.ailiaSpeechResetTranscribeState(ppAilia!.value);
  throwError("ailiaSpeechResetTranscribeState", status);
}