bool? getEnvBool(String key, [bool? fallback]) { return hasEnv(key) && getEnv(key) != null ? getEnv(key)?.toLowerCase() == 'true' : fallback; }