assignCoalescing method

Builder assignCoalescing(
  1. Builder other
)

Returns the assign coalescing of this and other.

this ??= other

Implementation

Builder assignCoalescing(
  Builder other,
) {
  return builder.assignCoalescing(this, other);
}