Future<List<Webhook>> getGuildWebhooks(String guildId) { var endpoint = '/channels/$guildId/webhooks'; return _http.request( endpoint, converter: _http.listMapper(Webhook.fromJson), ); }