ignoreNull property

  1. @TagNumber.new(501)
bool get 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.new(501)
set ignoreNull (bool v)

Implementation

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