strictSecurityChecks property

bool? get strictSecurityChecks

When enabled, this parameter marks security checks that don’t meet minimum requirements as 'Failed' (instead of 'WasNotDone'), which causes the overall security status to be 'Failed'.

Implementation

bool? get strictSecurityChecks => _strictSecurityChecks;
set strictSecurityChecks (bool? val)

Implementation

set strictSecurityChecks(bool? val) {
  _strictSecurityChecks = val;
  _set({"strictSecurityChecks": val});
}