deleteChannelAttributesByKeys method

  1. @Deprecated('Use deleteChannelAttributesByKeys2 instead of.')
Future<void> deleteChannelAttributesByKeys(
  1. String channelId,
  2. List<String> keys,
  3. bool enableNotificationToChannelMembers
)

Implementation

@Deprecated('Use deleteChannelAttributesByKeys2 instead of.')
Future<void> deleteChannelAttributesByKeys(String channelId,
    List<String> keys, bool enableNotificationToChannelMembers) {
  return deleteChannelAttributesByKeys2(channelId, keys,
      ChannelAttributeOptions(enableNotificationToChannelMembers));
}