pin method
Pin the message.
await message.pin();
Implementation
Future<void> pin() async {
await _datastore.message.pin(channelId, id);
}
Pin the message.
await message.pin();
Future<void> pin() async {
await _datastore.message.pin(channelId, id);
}