delete method

void delete()

Destroys the options instance.

Implementation

void delete() {
  checkState(!_deleted, message: 'BertNLClassifierOptions already deleted.');
  calloc.free(_options);
  _deleted = true;
}