configureGlobalMTLS function
void
configureGlobalMTLS()
Configure global TLS settings.
Implementation
void configureGlobalMTLS() {
final mtlsConfig = getMTLSConfig();
if (mtlsConfig == null) return;
if (Platform.environment['NODE_EXTRA_CA_CERTS'] != null) {
// Logged for debugging; in Dart, the system handles CA certs automatically
}
}