sealdSdkVersion top-level property Utils

String sealdSdkVersion
final

The version of the Seald SDK.

{@category Utils}

Implementation

final String sealdSdkVersion = (() {
  final Pointer<Utf8> v = _bindings.SealdSdk_Version();
  final String res = v.toDartString();
  calloc.free(v);
  return res;
})();