fetch method

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

Fetch the server's channels.

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

Implementation

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