yielded function

Builder yielded(
  1. Builder value
)

Returns this prefixed with yield.

yield this

Implementation

Builder yielded(
  Builder value,
) {
  return Row([
    const Static('yield '),
    value,
  ]);
}