clear method

void clear()

Clears the StringList object.

throws FaceException An error has occurred during Face Library execution.

Implementation

void clear() {
  var err = faceSDK.id3FaceStringList_Clear(_pHandle.value);
  if (err != FaceError.success.value) {
    throw FaceException(err);
  }
}