appendInt method
Appends an integer to this StringBuilder.
value
the integer to append
Returns this StringBuilder for method chaining
Implementation
StringBuilder appendInt(int value) {
_buffer.write(value);
return this;
}
Appends an integer to this StringBuilder.
value
the integer to append
Returns this StringBuilder for method chaining
StringBuilder appendInt(int value) {
_buffer.write(value);
return this;
}