registerKey property
RegisterKeyOptions?
get
registerKey
If present, registers the challenged key with the specified
scope
's token. The key can then be associated with a
certificate and used like any other signing key. Subsequent calls to
this function will then generate a new Enterprise Key in the specified
scope
.
Implementation
RegisterKeyOptions? get registerKey =>
_wrapped.registerKey?.let(RegisterKeyOptions.fromJS);
set
registerKey
(RegisterKeyOptions? v)
Implementation
set registerKey(RegisterKeyOptions? v) {
_wrapped.registerKey = v?.toJS;
}