line method

BoxBuilder line(
  1. String text
)

Adds a line to the box content.

Implementation

BoxBuilder line(String text) {
  _content.add(text);
  return this;
}