resolveLetsEncryptProduction static method
Implementation
static bool resolveLetsEncryptProduction(
bool? letsEncryptProduction, {
APIConfig? apiConfig,
}) {
letsEncryptProduction ??= apiConfig?.getPath('letsencrypt', 'production');
letsEncryptProduction ??= false;
return letsEncryptProduction;
}