dispose method Null safety
Removing an object from memory. Must be called manually.
Implementation
void dispose() {
final exception = _getException();
final destructor =
_dll_handle.lookupFunction<_ProcessingBlock_destroyProcessingBlock_c, _ProcessingBlock_destroyProcessingBlock_dart>('TDVProcessingBlock_destroyBlock');
destructor(_impl, exception);
tdvCheckException(exception, _dll_handle);
}