sdkIdentities property

Future<String> sdkIdentities

Calls the provided callback with a JSON string containing all of the user's identities known by the SDK

@return {String} known identifier as a JSON string

Implementation

static Future<String> get sdkIdentities =>
    _channel.invokeMethod<String>('getSdkIdentities').then((value) => value!);