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