clientCerts property
List<ByteBuffer> ?
get
clientCerts
If given, the selectClientCertificates
operates on this
list. Otherwise, obtains the list of all certificates from the platform's
certificate stores that are available to this extensions.
Entries that the extension doesn't have permission for or which doesn't
match the request, are removed.
Implementation
List<ByteBuffer>? get clientCerts => _wrapped.clientCerts?.toDart
.cast<JSArrayBuffer>()
.map((e) => e.toDart)
.toList();
set
clientCerts
(List<ByteBuffer> ? v)
Implementation
set clientCerts(List<ByteBuffer>? v) {
_wrapped.clientCerts = v?.toJSArray((e) => e.toJS);
}