removeChannel method

Future<String> removeChannel(
  1. RealtimeChannel channel
)

Unsubscribes and removes Realtime channel from Realtime client.

channel - The name of the Realtime channel.

Implementation

Future<String> removeChannel(RealtimeChannel channel) {
  return realtime.removeChannel(channel);
}