appendDouble method

StringBuilder appendDouble(
  1. double value
)

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;
}