supportedAlgorithms property

List<Algorithm> get supportedAlgorithms

All algorithms supported for this certificate. The extension will only be asked for signatures using one of these algorithms.

Implementation

List<Algorithm> get supportedAlgorithms => _wrapped.supportedAlgorithms.toDart
    .cast<$js.Algorithm>()
    .map((e) => Algorithm.fromJS(e))
    .toList();
set supportedAlgorithms (List<Algorithm> v)

Implementation

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