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