getFullVoicePath method

String? getFullVoicePath(
  1. String path
)

Implementation

String? getFullVoicePath(String path) {
  String? result;
  var bufferPointer = calloc<Int8>(260);
  openjtalkGetFullVoicePath(this, path, bufferPointer);
  if (bufferPointer != nullptr) {
    result = result = bufferPointer.cast<Utf8>().toDartString();
  }
  calloc.free(bufferPointer);
  return result;
}