addAssign method

Builder addAssign(
  1. Builder other
)

Returns the += operator of this and other.

this += other

Implementation

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