clear method

void clear()

Clear the list.

throws BiosealException An error has occurred during Bioseal Library execution.

Implementation

void clear() {
  var err = biosealSDK.id3BiosealFieldList_Clear(_pHandle.value);
  if (err != BiosealError.success.value) {
    throw BiosealException(err);
  }
}