responseJson property
String?
get
responseJson
The PublicKeyCredential
, yielded by the remote request, if
any, serialized as a JSON string by calling
href="https://w3c.github.io/webauthn/#dom-publickeycredential-tojson">
PublicKeyCredential.toJSON()
.
Implementation
String? get responseJson => _wrapped.responseJson;
set
responseJson
(String? v)
Implementation
set responseJson(String? v) {
_wrapped.responseJson = v;
}