ServerConfig constructor
ServerConfig({
- String? hostServerAddress,
- ServerTLSConfigServerBasedAuthentication? tls,
- ServerTLSConfigMutualAuthentication? mutualTls,
Implementation
factory ServerConfig({
$core.String? hostServerAddress,
ServerTLSConfigServerBasedAuthentication? tls,
ServerTLSConfigMutualAuthentication? mutualTls,
}) {
final $result = create();
if (hostServerAddress != null) {
$result.hostServerAddress = hostServerAddress;
}
if (tls != null) {
$result.tls = tls;
}
if (mutualTls != null) {
$result.mutualTls = mutualTls;
}
return $result;
}