pin method

Future<void> pin()

Pin the message.

await message.pin();

Implementation

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