getIntegrations method
Implementation
Future<List<Integration>> getIntegrations(String guildId) {
var endpoint = '/guilds/$guildId/integrations';
return _http.request(
endpoint,
converter: _http.listMapper(Integration.fromJson),
);
}
Future<List<Integration>> getIntegrations(String guildId) {
var endpoint = '/guilds/$guildId/integrations';
return _http.request(
endpoint,
converter: _http.listMapper(Integration.fromJson),
);
}