title method

BoxBuilder title(
  1. String title
)

Sets the box title.

Implementation

BoxBuilder title(String title) {
  _title = title;
  return this;
}