ifNullThen function

Builder ifNullThen(
  1. Builder value,
  2. Builder other
)

Returns the ?? operation of this and other.

this ?? other

Implementation

Builder ifNullThen(
  Builder value,
  Builder other,
) {
  return Row.binary(left: value, right: other, operator: '??');
}