caCerts property

List<String>? get caCerts

A list of root certificates that will be used in addition to the default root certificates to verify the peer's certificate.

Must be in PEM format.

Implementation

_i2.List<_i2.String>? get caCerts => (_i3.getProperty(
      this,
      'caCerts',
    ) as _i2.List?)
        ?.cast();
set caCerts (List<String>? value)

Implementation

set caCerts(_i2.List<_i2.String>? value) {
  _i3.setProperty(
    this,
    'caCerts',
    value ?? _i6.undefined,
  );
}