Skip to main content

User

User info​

Get information about a user specified by their DID.

final userInfo = await client.userInfo(did);

Register​

Register user by did and password.

final res = await client.register(did, password);

Private Key​

Retrieve PrivateKey by did and password.

final privateKey = await client.retrievePrivateKey(did, password);

Get connected user by DID and password​

final user = await client.userWithDIDAndPassword(did, password);

Get connected user by DID and privateKey​

final user = await client.userWithDIDAndPrivateKey(did, privateKey);