setChannelAttributes method

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

Implementation

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