setVerifiesGovernance method

void setVerifiesGovernance(
  1. bool verifiesGovernance
)

Sets the indicates whether the governance certification chain is verified. Hint: Default value is true.

param verifiesGovernance Indicates whether the governance certification chain is verified. throws BiosealException An error has occurred during Bioseal Library execution.

Implementation

void setVerifiesGovernance(bool verifiesGovernance) {
  var err = biosealSDK.id3Bioseal_SetVerifiesGovernance(_pHandle.value, verifiesGovernance);
  if (err != BiosealError.success.value) {
    throw BiosealException(err);
  }
}