add method

PdfSection add()

Creates a new PdfSection and adds it to the collection.

Implementation

PdfSection add() {
  final PdfSection section = PdfSectionHelper.load(_helper.document);
  _addSection(section);
  return section;
}