setDescription method
Set the server's description.
await server.setDescription('New Server Description', reason: 'Testing');
Implementation
Future<void> setDescription(String description, {String? reason}) async {
await _serverPart.updateServer(id, {'description': description}, reason);
}