ignoreNull property

  1. @TagNumber(501)
bool ignoreNull

Optional. Rows with null values will automatically fail a rule, unless ignore_null is true. In that case, such null rows are trivially considered passing.

Only applicable to ColumnMap rules.

Implementation

@$pb.TagNumber(501)
$core.bool get ignoreNull => $_getBF(9);
  1. @TagNumber(501)
void ignoreNull=(bool v)

Implementation

@$pb.TagNumber(501)
set ignoreNull($core.bool v) { $_setBool(9, v); }