clearChannelAttributes2 method

Future<void> clearChannelAttributes2(
  1. String channelId, [
  2. ChannelAttributeOptions? option
])

Clears all attributes of the channel.

Implementation

Future<void> clearChannelAttributes2(String channelId,
    [ChannelAttributeOptions? option]) {
  return _callNative("clearChannelAttributes", {
    "channelId": channelId,
    "option": option?.toJson(),
  });
}