createDM method
Implementation
Future<Channel> createDM(String recipientId) {
var endpoint = '/users/@me/channels';
return _http.request(
endpoint,
method: 'post',
converter: Channel.fromJson,
body: {'recipient_id': recipientId},
);
}