Get User Information - Flutter

Can I get User information in FLutter?
In Doc I found examples for others not for Flutter?
kobi

Hello, we have informed our docs team to check on the mentioned part.

In the meantime, you can try this sample code below:

 var amityCoreClient = AmityCoreClient.newUserRepository().getUser("userId").then((user) => {
  print(user.displayName)
 });
1 Like