negated function

Builder negated(
  1. Builder value
)

Returns the negated version of this.

!this

Implementation

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