reset method

void reset()

Reset the SDK to uninitialized state

This is mainly useful for testing or when you need to reinitialize with different configuration.

Implementation

void reset() {
  _isInitialized = false;
  _config = null;
}