disconnect method

Future<bool> disconnect()

In edition mode, always return true

Implementation

Future<bool> disconnect() async {
  try {
    if (this._inAppUserClientService == null) { // TODO change with config
      return true;
    }
    await this._inAppUserClientService!.onDisconnect();
    return true;
  } catch (e){
    return false;
  }
}