add method

  1. @override
Description add(
  1. String text
)
override

Append text to the description.

Implementation

@override
Description add(String text) {
  _out.write(text);
  return this;
}