groupDMRemoveRecipient method

Future groupDMRemoveRecipient(
  1. String channelId,
  2. String userId
)

Implementation

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