appendBool method
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;
}
Appends a boolean to this StringBuilder.
value
the boolean to append
Returns this StringBuilder for method chaining
StringBuilder appendBool(bool value) {
_buffer.write(value);
return this;
}