unpin method

Future<void> unpin()

Unpin the message.

await message.unpin();

Implementation

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