Unpins the channel.
Future<Member?> unpin() async { _checkInitialized(); final response = await _client.unpinChannel( channelId: id!, channelType: type, ); return response.channelMember; }