delete method

void delete()

Destroys the options instance.

Implementation

void delete() {
  checkState(!_deleted, message: 'InterpreterOptions already deleted.');
  tfliteBinding.TfLiteInterpreterOptionsDelete(_options);
  _deleted = true;
}