getContact method

Future<Contact?> getContact(
  1. String userId
)

Implementation

Future<Contact?> getContact(String userId) {
  return checkResult(ChatSDKEvent.getAllContacts, () {
    return Client.getInstance.contactManager.getContact(userId: userId);
  });
}