assign function

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

Returns the assign operation of this and other.

this = other

Implementation

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