connect method

Future<bool> connect(
  1. String inAppUserId
)

In edition mode, always return true

Implementation

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