getConversationHashService function
Implementation
getConversationHashService({
required String conversationId,
required String account,
}) async {
final path =
'/v1/chat/users/${walletToPCAIP10(account)}/conversations/$conversationId/hash';
return http.get(
path: path,
);
}