as function

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

Returns the as operation of this and other.

(this as other)

Implementation

Builder as(
  Builder value,
  Builder other,
) {
  return Row([
    const Static('('),
    value,
    const Static(' as '),
    other,
    const Static(')'),
  ]);
}