unsubscribe method

Future<RespType> unsubscribe(
  1. Iterable<String> channels
)

Implementation

Future<RespType> unsubscribe(Iterable<String> channels) async {
  return tier0.execute([
    'UNSUBSCRIBE',
    ...channels,
  ]);
}