setSystemChannel method
Set the server's system channel.
await server.setSystemChannel('1091121140090535956', reason: 'Testing');
Implementation
Future<void> setSystemChannel(String? channelId, {String? reason}) async {
await _datastore.server.update(_serverId.value, {'system_channel_id': channelId}, reason);
}