getIntegrations method

Future<List<Integration>> getIntegrations(
  1. String guildId
)

Implementation

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