get method

Future<Sticker?> get(
  1. String id, {
  2. bool force = false,
})

Get a channel by its id.

final channel = await server.assets.stickers.get('1091121140090535956');

Implementation

Future<Sticker?> get(String id, {bool force = false}) => _datastore.sticker.get(_serverId.value, id, force);