contains method

bool contains(
  1. PdfNamedDestination namedDestination
)

Determines whether the specified named destinations presents in the collection.

Implementation

bool contains(PdfNamedDestination namedDestination) {
  return _namedCollections.contains(namedDestination);
}