apiKey property
String?
get
apiKey
Implementation
static String? get apiKey => _internalApiKey;
set
apiKey
(String? apiKey)
Implementation
static set apiKey(String? apiKey) {
_internalApiKey = apiKey;
if (apiKey != null) {
AppNetworkManager.instance.addAuthorizationHeader(apiKey);
}
}