line method

Panel line(
  1. String text
)

Adds a line to the panel content.

Implementation

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