getConversationHashService function

dynamic getConversationHashService({
  1. required String conversationId,
  2. required String account,
})

Implementation

getConversationHashService({
  required String conversationId,
  required String account,
}) async {
  final path =
      '/v1/chat/users/${walletToPCAIP10(account)}/conversations/$conversationId/hash';

  return http.get(
    path: path,
  );
}