update method

Future<void> update(
  1. ChannelBuilderContract builder, {
  2. String? reason,
})

Updates the channel.

Implementation

Future<void> update(ChannelBuilderContract builder, {String? reason}) =>
    _dataStore.channel
        .update(id.value, builder, serverId: serverId.value, reason: reason);