getChannelInfo method

Future<ChannelInfo?> getChannelInfo(
  1. String channelName
)

Gets information about a specific channel.

channelName is the name of the channel.

Returns ChannelInfo if the channel exists, null otherwise.

Throws EventLogException if the operation fails.

Implementation

Future<ChannelInfo?> getChannelInfo(String channelName) {
  throw UnimplementedError('getChannelInfo() has not been implemented.');
}