Swift: Unsubscribe from a channel

Unsubscribes and removes Realtime channel from Realtime client.

Examples

Remove a channel

let channel = await supabase.channel("channelId") 

//...
await supabase.removeChannel(channel)

Unsubscribe from a channel

let channel = await supabase.channel("channelId") 

//...
await channel.unsubscribe()