showChannel method

Future<EmptyResponse> showChannel(
  1. String channelId,
  2. String channelType
)

Removes the hidden status for the channel

Implementation

Future<EmptyResponse> showChannel(
  String channelId,
  String channelType,
) =>
    _chatApi.channel.showChannel(
      channelId,
      channelType,
    );