getDic method

String? getDic()

Implementation

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