subscribe method

Future<RespType> subscribe(
  1. List<String> channels
)

Implementation

Future<RespType> subscribe(List<String> channels) async {
  return tier0.execute([
    'SUBSCRIBE',
    ...channels,
  ]);
}