or function

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

Returns the or operator of this and other.

this || other

Implementation

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