certificateChain property

List<ByteBuffer> get certificateChain

The array must contain the DER encoding of the X.509 client certificate as its first element. This must include exactly one certificate.

Implementation

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

Implementation

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