aiApiKey property
String?
get
aiApiKey
The user's own API key, or null to use the Hub's key.
Implementation
String? get aiApiKey => _kv.read(_aiApiKeyKey);
set
aiApiKey
(String? value)
Implementation
set aiApiKey(String? value) => value == null || value.isEmpty
? _kv.remove(_aiApiKeyKey)
: _kv.write(_aiApiKeyKey, value);