deleteCommunityChannelAttributes method

Future<Map> deleteCommunityChannelAttributes({
  1. required dynamic keys,
  2. required String channelID,
  3. required String communityID,
})

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);
}