getChatUserId method

Future<ChatUserList> getChatUserId(
  1. String name
)

Implementation

Future<ChatUserList> getChatUserId(String name) async {
  final  response = await client.getAllChatUsers(Empty()..name=name);
  return response;
}