geVoicePath method

String? geVoicePath()

Implementation

String? geVoicePath() {
  String? result;
  var pathPointer = calloc<Int8>(260);
  openjtalkGetVoicePath(this, pathPointer);
  if (pathPointer != nullptr) {
    result = pathPointer.cast<Utf8>().toDartString();
  }
  calloc.free(pathPointer);
  return result;
}