supportedAlgorithms property
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();