pin method

Future<void> pin()

Pin the message.

await message.pin();

Implementation

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