enablePremiumProgressBar method
Set the server's enabled premium features.
await server.enablePremiumProgressBar(true, reason: 'Testing');
Implementation
Future<void> enablePremiumProgressBar(bool value, {String? reason}) async {
await _serverPart.updateServer(
id, {'premium_progress_bar_enabled': value}, reason);
}