lines method
Sets the box content from a list of lines.
Implementation
BoxBuilder lines(List<String> lines) {
_content.clear();
_content.addAll(lines);
return this;
}
Sets the box content from a list of lines.
BoxBuilder lines(List<String> lines) {
_content.clear();
_content.addAll(lines);
return this;
}