statement function

Builder statement(
  1. Builder value
)

Returns this as a statement with a suffixed ;.

this;

Implementation

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