CertificateExtension.fromHandle constructor

CertificateExtension.fromHandle(
  1. Pointer<id3BiosealCertificateExtension> handle
)

Creates a new instance of the CertificateExtension class.

param handle Handle to the CertificateExtension. throws BiosealException An error has occurred during Bioseal Library execution.

Implementation

CertificateExtension.fromHandle(Pointer<id3BiosealCertificateExtension> handle) {
  _pHandle = calloc();
  _pHandle.value = handle;
  _disposable = false;
}