countUnreadConversations method
Implementation
Future<int> countUnreadConversations(String sessionId) async {
var response = await http.get( Uri.parse('https://api.solidchat.io/api/public/visitors/$sessionId/unreads'),
headers: <String, String>{
'Content-Type': 'application/json; charset=UTF-8',
});
return jsonDecode(response.body)['count'];
}