endUserSession static method

dynamic endUserSession()

Ends the user session if any session is active.

Implementation

static endUserSession() async {
  try {
    await _hyperSnapSDKChannel
        .invokeMethod(HyperSnapSDKConstants.endUserSession);
  } catch (e) {
    log(e.toString());
  }
}