contains method

bool contains (
  1. Object? entry
)
override

Whether entry is a LinkedListEntry belonging to this list.

The entry is considered as belonging to this list if its LinkedListEntry.list is this list.

Implementation

bool contains(Object? entry) =>
    entry is LinkedListEntry && identical(this, entry.list);

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.13.0/dart-collection/LinkedList/contains.html