spread function

Builder spread(
  1. Builder value
)

Returns this prefixed with the spread operator.

...this

Implementation

Builder spread(
  Builder value,
) {
  return Row([
    const Static('...'),
    value,
  ]);
}