appendDouble method
Appends a double to this StringBuilder.
value
the double to append
Returns this StringBuilder for method chaining
Implementation
StringBuilder appendDouble(double value) {
_buffer.write(value);
return this;
}
Appends a double to this StringBuilder.
value
the double to append
Returns this StringBuilder for method chaining
StringBuilder appendDouble(double value) {
_buffer.write(value);
return this;
}