remove method

void remove(
  1. PdfListFieldItem item
)

Removes the specified PdfListFieldItem.

Implementation

void remove(PdfListFieldItem item) {
  if (_helper.list.contains(item)) {
    _doRemove(item);
  }
}