lines method

Panel lines(
  1. List<String> lines
)

Sets the panel content from a list of lines.

Implementation

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