createCommunityChannel method
Implementation
Future<Map<dynamic, dynamic>> createCommunityChannel(
{required dynamic channelInfo, dynamic? config}) async {
final result = await promiseToFuture(ZIM
.getInstance()!
.createCommunityChannel(
_mapToJSObject(channelInfo), _mapToJSObject(config)))
.catchError(_handleError);
return _jsObjectToMap(result);
}