deleteChannelAttributesByKeys2 method

Future<void> deleteChannelAttributesByKeys2(
  1. String channelId,
  2. List<String> attributeKeys, [
  3. ChannelAttributeOptions? option
])

Deletes the channel's attributes using attribute keys.

Implementation

Future<void> deleteChannelAttributesByKeys2(
    String channelId, List<String> attributeKeys,
    [ChannelAttributeOptions? option]) {
  return _callNative("deleteChannelAttributesByKeys", {
    "channelId": channelId,
    "attributeKeys": attributeKeys,
    "option": option?.toJson(),
  });
}