allowCredentials property

  1. @TagNumber.new(7)
bool get allowCredentials

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);
  1. @TagNumber.new(7)
set allowCredentials (bool v)

Implementation

@$pb.TagNumber(7)
set allowCredentials($core.bool v) {
  $_setBool(6, v);
}