hubDefault method
Fetches the Hub's advertised default AI config (provider/model, no key),
or null when unavailable or the call fails (best-effort, for display).
Implementation
Future<HubAiConfig?> hubDefault() async {
try {
return await _service.fetchHubAiConfig();
} on Object {
return null;
}
}