assignCoalescing function

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

Returns the assign coalescing of this and other.

this ??= other

Implementation

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