VaisSpeech constructor

VaisSpeech({
  1. String? token,
  2. dynamic grpcAddress = 'asr-benchmark.vais.vn',
  3. dynamic port = 50050,
  4. dynamic request = true,
})

Implementation

VaisSpeech({this.token,grpcAddress = 'asr-benchmark.vais.vn',port = 50050,this.request = true}) {
  print(grpcAddress);
  print(port);
  vaisAudio = VaisSpeechAudio(token,grpcAddress,port);
  _vaisHelper = VaisSpeechHelper(NetworkRepository(apiKey: token));
}