dispose method

void dispose()

Destroy the encoder and free native resources.

Implementation

void dispose() {
  if (!_disposed) {
    _aacDestroy(_handle);
    _disposed = true;
  }
}