reset method
Resets SDK to the initial connection state: default production server URL, empty user hash, and a new session propagated to managers (same effect on session-aware managers as changing server or user hash). Call from the UI thread.
Implementation
@override
void reset() {
final _resetFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
Void Function(Pointer<Void>, ),
void Function(Pointer<Void>, )
>('navigine_sdk_flutter_NavigineSdk_reset'));
_resetFfi(this.ptr, );
exception.checkCallResult();
}