getChatUserList method

Future<List<ChatUser>> getChatUserList()

Implementation

Future<List<ChatUser>> getChatUserList() async{
  final response = await client.getAllChatUsers(Empty());
  return response.chatUser;
}