OrtSession.fromAddress constructor

OrtSession.fromAddress(
  1. int address
)

Creates a session from a pointer's address.

Implementation

OrtSession.fromAddress(int address) {
  _ptr = ffi.Pointer.fromAddress(address);
  _init();
}