getGlobalChatBadges method

  1. @override
Future<HttpResult<OpenApiGetBadgeResponse>> getGlobalChatBadges()
override

Implementation

@override
Future<HttpResult<OpenApiGetBadgeResponse>> getGlobalChatBadges() {
  return client.makeGet(
    OpenApiChannelConstants.getGlobalChatBadgesEndpoint,
    convertBodyFunc: (response) =>
        OpenApiGetBadgeResponse.fromHttpResponse(response),
    bearerToken: token,
    clientId: clientId,
  );
}