fetch method

Future<Map<Snowflake, Emoji>> fetch({
  1. bool force = false,
})

Fetch the server's channels.

final channels = await server.channels.fetch();

Implementation

Future<Map<Snowflake, Emoji>> fetch({bool force = false}) =>
    _datastore.emoji.fetch(_serverId.value, force);