RegisterKeyOptions constructor

RegisterKeyOptions({
  1. required Algorithm algorithm,
})

Implementation

RegisterKeyOptions(
    {
    /// Which algorithm the registered key should use.
    required Algorithm algorithm})
    : _wrapped = $js.RegisterKeyOptions(algorithm: algorithm.toJS);