ServerTLSSettings constructor
const
ServerTLSSettings({
- String? caCertificates,
- List<
String> ? cipherSuites, - String? credentialName,
- bool? httpsRedirect,
- TlsProtocol? minProtocolVersion,
- TlsProtocol? maxProtocolVersion,
- required TlsMode mode,
- String? privateKey,
- String? serverCertificate,
- List<
String> ? subjectAltNames, - List<
String> ? verifyCertificateHash, - List<
String> ? verifyCertificateSpki,
The main constructor.
Implementation
const ServerTLSSettings({
this.caCertificates,
this.cipherSuites,
this.credentialName,
this.httpsRedirect,
this.minProtocolVersion,
this.maxProtocolVersion,
required this.mode,
this.privateKey,
this.serverCertificate,
this.subjectAltNames,
this.verifyCertificateHash,
this.verifyCertificateSpki,
});