serverCertificateChain property

List<ByteBuffer> get serverCertificateChain

Each chain entry must be the DER encoding of a X.509 certificate, the first entry must be the server certificate and each entry must certify the entry preceding it.

Implementation

List<ByteBuffer> get serverCertificateChain =>
    _wrapped.serverCertificateChain.toDart
        .cast<JSArrayBuffer>()
        .map((e) => e.toDart)
        .toList();
set serverCertificateChain (List<ByteBuffer> v)

Implementation

set serverCertificateChain(List<ByteBuffer> v) {
  _wrapped.serverCertificateChain = v.toJSArray((e) => e.toJS);
}