appendBool method

StringBuilder appendBool(
  1. bool value
)

Appends a boolean to this StringBuilder.

value the boolean to append Returns this StringBuilder for method chaining

Implementation

StringBuilder appendBool(bool value) {
  _buffer.write(value);
  return this;
}