unwrapKey method
Implementation
Future<CryptoKey> unwrapKey(
KeyFormat format,
dynamic wrappedKey,
CryptoKey unwrappingKey,
dynamic unwrapAlgorithm,
dynamic unwrappedKeyAlgorithm,
bool extractable,
Iterable<KeyUsage> keyUsages) =>
js_util.promiseToFuture(js_util.callMethod(this, 'unwrapKey', [
format.value,
wrappedKey,
unwrappingKey,
unwrapAlgorithm,
unwrappedKeyAlgorithm,
extractable,
keyUsages.map((e) => e.value)
]));