subscribe method

Channel subscribe({
  1. String? channelName,
})

TODO: Add subscribe method

Implementation

Channel subscribe({String? channelName}) {
  channelName ??= 'default';

  return Channel(channelName);
}