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