add method

int add(
  1. PdfListItem item, [
  2. double? itemIndent
])

Adds the specified item.

//Create a new PDF document.
PdfDocument document = PdfDocument();
//Create a new ordered list.
PdfOrderedList(
    items: PdfListItemCollection()
      //Add items to list item collection
      ..add(PdfListItem(text: 'PDF'))
      ..add(PdfListItem(text: 'DocIO')),
    font: PdfStandardFont(PdfFontFamily.helvetica, 16,
        style: PdfFontStyle.italic))
  ..draw(
      page: document.pages.add(), bounds: const Rect.fromLTWH(20, 20, 0, 0));
//Save the document.
List<int> bytes = await document.save();
//Dispose the document.
document.dispose();

Implementation

int add(PdfListItem item, [double? itemIndent]) {
  return _helper.add(item, itemIndent);
}