authCredentials property
BlockingResponseAuthCredentials?
get
authCredentials
Only used as a response to the onAuthRequired event. If set, the request is made using the supplied credentials.
Implementation
BlockingResponseAuthCredentials? get authCredentials =>
_wrapped.authCredentials?.let(BlockingResponseAuthCredentials.fromJS);
set
authCredentials
(BlockingResponseAuthCredentials? v)
Implementation
set authCredentials(BlockingResponseAuthCredentials? v) {
_wrapped.authCredentials = v?.toJS;
}