allowCredentials property
In response to a preflight request, setting this to true indicates that the actual request can include user credentials. This translates to the Access-Control-Allow-Credentials header.
Default value is false.
Implementation
@$pb.TagNumber(7)
$core.bool get allowCredentials => $_getBF(6);
Implementation
@$pb.TagNumber(7)
set allowCredentials($core.bool v) {
$_setBool(6, v);
}