getPinnedMessages method

Future<List<Message>> getPinnedMessages(
  1. String channelId
)

Implementation

Future<List<Message>> getPinnedMessages(String channelId) {
  var endpoint = '/channels/$channelId/pins';
  return _http.request(endpoint,
      converter: _http.listMapper(Message.fromJson));
}