deleteCommunityChannelAttributes method
Implementation
Future<Map<dynamic, dynamic>> deleteCommunityChannelAttributes(
{required dynamic keys,
required String channelID,
required String communityID}) async {
final result = await promiseToFuture(ZIM
.getInstance()!
.deleteCommunityChannelAttributes(keys, channelID, communityID))
.catchError(_handleError);
return _jsObjectToMap(result);
}