dispose method

void dispose()

Stop and close all streams. This cannot be undone Only call this method if you don't want to use this anymore

Implementation

void dispose() {
  stop();
  eventsStreamController.close();
  _recorderStatusController.close();
  _audioStreamController.close();
}