createChannel method

Future<NIMResult<ChannelBaseInfo>> createChannel({
  1. required ChannelType type,
  2. String? channelName,
  3. String? channelExt,
})

Implementation

Future<NIMResult<ChannelBaseInfo>> createChannel(
    {required ChannelType type,
    String? channelName,
    String? channelExt}) async {
  throw UnimplementedError('createChannel is not implemented');
}