byPath method

H3 byPath(
  1. String libraryPath
)

Loads H3 by libraryPath

final h3 = h3Factory.process('../h3_ffi/c/h3lib/build/h3.so');
h3.degsToRads(123);

Implementation

H3 byPath(String libraryPath) {
  libraryPath = p.canonicalize(libraryPath);
  return H3Ffi(_h3cFactory.byPath(libraryPath));
}