version property

String get version

Gets the version of onnx runtime.

Implementation

static String get version => onnxRuntimeBinding.OrtGetApiBase()
    .ref
    .GetVersionString
    .asFunction<ffi.Pointer<ffi.Char> Function()>()()
    .cast<Utf8>()
    .toDartString();