lines method

BoxBuilder lines(
  1. List<String> lines
)

Sets the box content from a list of lines.

Implementation

BoxBuilder lines(List<String> lines) {
  _content.clear();
  _content.addAll(lines);
  return this;
}