supportedHashes property
Must be set to all hashes supported for this certificate. This extension will only be asked for signatures of digests calculated with one of these hash algorithms. This should be in order of decreasing hash preference.
Implementation
List<Hash> get supportedHashes => _wrapped.supportedHashes.toDart
.cast<$js.Hash>()
.map((e) => Hash.fromJS(e))
.toList();