get method

Future<Guild> get(
  1. String guildId, {
  2. bool withCounts = false,
})

Implementation

Future<Guild> get(String guildId, {bool withCounts = false}) {
  var endpoint = '/guilds/$guildId';
  return _http.request(endpoint, converter: Guild.fromJson);
}