groupDMRemoveRecipient method
Implementation
Future groupDMRemoveRecipient(String channelId, String userId) {
var endpoint = '/channels/$channelId/recipients/$userId';
return _http.request(endpoint, converter: _http.asNull, method: 'delete');
}
Future groupDMRemoveRecipient(String channelId, String userId) {
var endpoint = '/channels/$channelId/recipients/$userId';
return _http.request(endpoint, converter: _http.asNull, method: 'delete');
}