delete method
void
delete()
Destroys the options instance.
Implementation
void delete() {
checkState(!_deleted, message: 'InterpreterOptions already deleted.');
tfliteBinding.TfLiteInterpreterOptionsDelete(_options);
for (final name in _customOpNames) {
calloc.free(name);
}
_customOpNames.clear();
_deleted = true;
}