assign method

Builder assign(
  1. Builder other
)

Returns the assign operation of this and other.

this = other

Implementation

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