addOrUpdateChannelAttributes method

  1. @Deprecated('Use addOrUpdateChannelAttributes2 instead of.')
Future<void> addOrUpdateChannelAttributes(
  1. String channelId,
  2. List<RtmChannelAttribute> attributes,
  3. bool enableNotificationToChannelMembers
)

Implementation

@Deprecated('Use addOrUpdateChannelAttributes2 instead of.')
Future<void> addOrUpdateChannelAttributes(
    String channelId,
    List<RtmChannelAttribute> attributes,
    bool enableNotificationToChannelMembers) {
  return addOrUpdateChannelAttributes2(channelId, attributes,
      ChannelAttributeOptions(enableNotificationToChannelMembers));
}