thrown function

Builder thrown(
  1. Builder value
)

Returns this prefixed with throw.

throw this

Implementation

Builder thrown(
  Builder value,
) {
  return Row([
    const Static('throw '),
    value,
  ]);
}