completeCreateRequest method
Reports the result of a navigator.credentials.create()
call. The extension must call this for every
onCreateRequest
event it has received, unless the request
was canceled (in which case, an onRequestCanceled
event is
fired).
Implementation
Future<void> completeCreateRequest(CreateResponseDetails details) async {
await promiseToFuture<void>(
$js.chrome.webAuthenticationProxy.completeCreateRequest(details.toJS));
}