crosspostMessage method
Implementation
Future<Message> crosspostMessage(String channelId, String messageId) {
var endpoint = '/channels/$channelId/messages/$messageId/crosspost';
return _http.request(endpoint, converter: Message.fromJson, method: 'post');
}