isNull property

void isNull

Implementation

void get isNull {
  builder
    .._hasValue = true
    .._raw ??= '';

  var r = builder._raw;
  if (r != null) {
    builder._raw = '$r$nameString IS NULL';
  } else {
    builder._raw = '$nameString IS NULL';
  }
}