setDescription method

Future<void> setDescription(
  1. String value
)

Define the description if this

final TextChannel channel = guild.channels.cache.getOrFail('240561194958716924');
await channel.setDescription('Lorem ipsum dolor sit amet.');

Implementation

Future<void> setDescription (String value) async {
  await update(ChannelBuilder({ 'topic': value }));
}